8000 Redesign the interface to the unikernel HermitCore by stlankes · Pull Request #65167 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Redesign the interface to the unikernel HermitCore #65167

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Oct 26, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension
< 8000 hr class="SelectMenu-divider">
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add aarch64 support for HermitCore
  • Loading branch information
stlankes committed Oct 21, 2019
commit 99b2e04a6e61a05bb4026e81cc2b85c8c1d65684
832D
2 changes: 1 addition & 1 deletion src/libstd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dlmalloc = { version = "0.1", features = ['rustc-dep-of-std'] }
[target.x86_64-fortanix-unknown-sgx.dependencies]
fortanix-sgx-abi = { version = "0.3.2", features = ['rustc-dep-of-std'] }

[target.x86_64-unknown-hermit.dependencies]
[target.'cfg(all(any(target_arch = "x86_64", target_arch = "aarch64"), target_os = "hermit"))'.dependencies]
hermit-abi = { version = "0.1", features = ['rustc-dep-of-std'] }

[target.wasm32-wasi.dependencies]
Expand Down
0