Skip to content

Commit 4a35056

Browse files
author
Jethro Beekman
committedDec 7, 2018
Add x86_64-fortanix-unknown-sgx target to libstd and dependencies
The files src/libstd/sys/sgx/*.rs are mostly copied/adapted from the wasm target. This also updates the dlmalloc submodule to the very latest version.

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2873
-15
lines changed
 

‎.gitmodules

+3-1
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,12 @@
6161
path = src/tools/clang
6262
url = https://github.com/rust-lang-nursery/clang.git
6363
branch = rust-release-80-v2
64-
6564
[submodule "src/doc/rustc-guide"]
6665
path = src/doc/rustc-guide
6766
url = https://github.com/rust-lang/rustc-guide.git
6867
[submodule "src/doc/edition-guide"]
6968
path = src/doc/edition-guide
7069
url = https://github.com/rust-lang-nursery/edition-guide
70+
[submodule "src/rust-sgx"]
71+
path = src/rust-sgx
72+
url = https://github.com/fortanix/rust-sgx

‎Cargo.lock

+9
Original file line numberDiff line numberDiff line change
@@ -797,6 +797,14 @@ name = "foreign-types-shared"
797797
version = "0.1.1"
798798
source = "registry+https://github.com/rust-lang/crates.io-index"
799799

800+
[[package]]
801+
name = "fortanix-sgx-abi"
802+
version = "0.0.0"
803+
dependencies = [
804+
"compiler_builtins 0.0.0",
805+
"core 0.0.0",
806+
]
807+
800808
[[package]]
801809
name = "fs2"
802810
version = "0.4.3"
@@ -2773,6 +2781,7 @@ dependencies = [
27732781
"compiler_builtins 0.0.0",
27742782
"core 0.0.0",
27752783
"dlmalloc 0.0.0",
2784+
"fortanix-sgx-abi 0.0.0",
27762785
"libc 0.0.0",
27772786
"panic_abort 0.0.0",
27782787
"panic_unwind 0.0.0",

0 commit comments

Comments
 (0)
Please sign in to comment.