Use cross compiler instead of libc-artifacts

This commit is contained in:
Jeremy Soller 2017-06-04 20:09:42 -06:00
parent 5f85e466a0
commit 3e18b7108a
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
[target.x86_64-unknown-redox]
linker = "libc-artifacts/gcc.sh"
linker = "x86_64-elf-redox-gcc"

View File

@ -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"