From cc5f7523bf9567eb17372c27ea8e514ae78e2ece Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Tue, 5 Sep 2017 20:23:50 -0600 Subject: [PATCH] Use -unknown for gcc and g++ --- recipes/rust/config.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/rust/config.toml b/recipes/rust/config.toml index ba7391371..38610cf8c 100644 --- a/recipes/rust/config.toml +++ b/recipes/rust/config.toml @@ -2,8 +2,8 @@ backtrace = false [target.x86_64-unknown-redox] -cc = "x86_64-elf-redox-gcc" -cxx = "x86_64-elf-redox-g++" +cc = "x86_64-unknown-redox-gcc" +cxx = "x86_64-unknown-redox-g++" llvm-config = "./llvm-config" [build]