about summary refs log tree commit diff
path: root/src/libstd/sys_common
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-07-25 01:05:00 +0200
committerGitHub <noreply@github.com>2019-07-25 01:05:00 +0200
commitb1a866012def324a47408d9130ea6c25cc5d0fc8 (patch)
tree81d9539132433fe87a3d154d7cc6f0923be090b3 /src/libstd/sys_common
parent8d9000d38ca359cf7cb13cc456745897a87516ce (diff)
parent4b339688b5b49e38545336b27845b7d1e31a5b80 (diff)
downloadrust-b1a866012def324a47408d9130ea6c25cc5d0fc8.tar.gz
rust-b1a866012def324a47408d9130ea6c25cc5d0fc8.zip
Rollup merge of #62814 - androm3da:hexagon_19jul_2019, r=alexcrichton
add support for hexagon-unknown-linux-musl
Diffstat (limited to 'src/libstd/sys_common')
-rw-r--r--src/libstd/sys_common/alloc.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/sys_common/alloc.rs b/src/libstd/sys_common/alloc.rs
index 978a70bee09..1cfc7ed17f2 100644
--- a/src/libstd/sys_common/alloc.rs
+++ b/src/libstd/sys_common/alloc.rs
@@ -12,7 +12,8 @@ use crate::ptr;
               target_arch = "powerpc",
               target_arch = "powerpc64",
               target_arch = "asmjs",
-              target_arch = "wasm32")))]
+              target_arch = "wasm32",
+              target_arch = "hexagon")))]
 pub const MIN_ALIGN: usize = 8;
 #[cfg(all(any(target_arch = "x86_64",
               target_arch = "aarch64",