Open drasko opened 2 years ago
See #369, which we plan to merge after the new asm hits stable. Until then, please use nightly-2021-12-15 or earlier.
@jethrogb I did:
rustup toolchain install nightly-2021-12-15
rustup target add x86_64-fortanix-unknown-sgx --toolchain nightly-2021-12-15
cargo install fortanix-sgx-tools sgxs-tools
Still the same error.
I was running into the same issues, and I managed to get everything to compile correctly by defining nightly-2021-12-15 as the default toolchain :
rustup default nightly-2021-12-15
Seeing that #369 was merged, I can confirm that installation works when referencing the repo directly:
cargo default nightly
cargo install fortanix-sgx-tools sgxs-tools --git https://github.com/fortanix/rust-sgx
It would be nice if the packages on crates.io were updated to include #369 so that users can have it work without the --git
argument.