From 3e18b7108a5004c81c14d8ccc3124227d3eea06e Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jackpot51@gmail.com> Date: Sun, 4 Jun 2017 20:09:42 -0600 Subject: [PATCH] Use cross compiler instead of libc-artifacts --- .cargo/config | 2 +- config.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.cargo/config b/.cargo/config index 2b36cbabb..9eae28d0f 100644 --- a/.cargo/config +++ b/.cargo/config @@ -1,2 +1,2 @@ [target.x86_64-unknown-redox] -linker = "libc-artifacts/gcc.sh" +linker = "x86_64-elf-redox-gcc" diff --git a/config.sh b/config.sh index 4272ccc70..09d8ae33b 100755 --- a/config.sh +++ b/config.sh @@ -7,4 +7,4 @@ export TARGET=x86_64-unknown-redox # Automatic variables ROOT="$(cd `dirname "$0"` && pwd)" REPO="$ROOT/repo/$TARGET" -export CC="$ROOT/libc-artifacts/gcc.sh" +export CC="x86_64-elf-redox-gcc" -- GitLab