> Thanks, I will try and report back.
Ok, I tested a bit and got the following errors:
```
error[E0658]: auto traits are experimental and possibly buggy
--> /<snip>/rust-sgx-sdk/sgx_tstd/src/panic.rs:118:1
|
118 | pub auto trait UnwindSafe {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: see issue #13231 <https://github.com/rust-lang/rust/issues/13231>
for more information
= help: add `#![feature(optin_builtin_traits)]` to the crate attributes to
enable
error[E0658]: auto traits are experimental and possibly buggy
--> /<snip>/rust-sgx-sdk/sgx_tstd/src/panic.rs:131:1
|
131 | pub auto trait RefUnwindSafe {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: see issue #13231 <https://github.com/rust-lang/rust/issues/13231>
for more information
= help: add `#![feature(optin_builtin_traits)]` to the crate attributes to
enable
error: aborting due to 2 previous errors
```
> I'd try to support both stable and nightly in the same branch. but I do have
> users who wants to always keep updated with latest nightly. and recent
> frequent breaking changes in libcore::alloc make things much more complicated
> than before. I want to make every one happy but it's bit of hard :-(
Understood. Thanks for creating this SDK. If you want to support both versions
of Rust, it may be a good idea to setup CI to test them periodically.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave-sgx-sdk/issues/315#issuecomment-775658367