From 99b2e04a6e61a05bb4026e81cc2b85c8c1d65684 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Mon, 21 Oct 2019 19:39:38 +0200 Subject: [PATCH] add aarch64 support for HermitCore --- src/libstd/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/Cargo.toml b/src/libstd/Cargo.toml index 1c99b091329f..9bf5caf03636 100644 --- a/src/libstd/Cargo.toml +++ b/src/libstd/Cargo.toml @@ -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]