From 4a16d95d0f9959b69a5367e4d087b9630b46da02 Mon Sep 17 00:00:00 2001 From: Kat Richey Date: Sun, 13 Jun 2021 17:40:52 -0500 Subject: [PATCH] Moved cross-compiler to ~/opt not ~/opt-test --- README | 8 ++++---- dev_tools/build_util_src/build_cross_compiler.sh | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README b/README index 1883e54..f94dc1f 100644 --- a/README +++ b/README @@ -22,10 +22,10 @@ Building If you'd like to build FENIX, first, make sure to download the kernel and libc repositories into folders named "kernel" and "libc". Additionally, make sure -you've successfully built the cross-compiler and added ~/opt-test/cross (or -wherever you've install the cross-compiler to) to your PATH. From there, you -should just need to run `build.sh`. If you'd like an ISO, run `iso.sh` and if -you'd like to test it using `qemu-system-i386`, simply run `qemu.sh`. +you've successfully built the cross-compiler and added ~/opt/cross (or wherever +you've install the cross-compiler to) to your PATH. From there, you should just +need to run `build.sh`. If you'd like an ISO, run `iso.sh` and if you'd like to +test it using `qemu-system-i386`, simply run `qemu.sh`. Portability ----------- diff --git a/dev_tools/build_util_src/build_cross_compiler.sh b/dev_tools/build_util_src/build_cross_compiler.sh index c7892ff..0686592 100755 --- a/dev_tools/build_util_src/build_cross_compiler.sh +++ b/dev_tools/build_util_src/build_cross_compiler.sh @@ -10,7 +10,7 @@ tar -xvf gcc-9.2.0.tar.xz # but, for now, this is what we'll use. # Besides, we'd need patches for a custom OS target TARGET=i686-elf -PREFIX="$HOME/opt-test/cross" +PREFIX="$HOME/opt/cross" PATH="$PREFIX/bin:$PATH" # Go ahead and make sure the prefix exists