about summary refs log tree commit diff
path: root/src/librustc_back
diff options
context:
space:
mode:
authorJeremy Soller <jackpot51@gmail.com>2016-12-20 18:09:19 -0700
committerJeremy Soller <jackpot51@gmail.com>2016-12-20 18:09:19 -0700
commit2ca1f0b3b30208695529e227cda6ba0ad8a5ec60 (patch)
treeb5aa0963c780cfb58efdaa02b4adf8c8ad53b249 /src/librustc_back
parent7697c7277ea35e215c412b8d1216ca75bd1a6a45 (diff)
Switch back to alloc_system
Diffstat (limited to 'src/librustc_back')
-rw-r--r--src/librustc_back/target/redox_base.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_back/target/redox_base.rs b/src/librustc_back/target/redox_base.rs
index fc4c68276b6..a04ec81e973 100644
--- a/src/librustc_back/target/redox_base.rs
+++ b/src/librustc_back/target/redox_base.rs
@@ -40,8 +40,8 @@ pub fn opts() -> TargetOptions {
         target_family: Some("redox".to_string()),
         linker_is_gnu: true,
         no_default_libraries: true,
-        lib_allocation_crate: "ralloc".to_string(),
-        exe_allocation_crate: "ralloc".to_string(),
+        lib_allocation_crate: "alloc_system".to_string(),
+        exe_allocation_crate: "alloc_system".to_string(),
         has_elf_tls: true,
         panic_strategy: PanicStrategy::Abort,
         .. Default::default()