Moved cross-compiler to ~/opt not ~/opt-test
This commit is contained in:
parent
7009447031
commit
4a16d95d0f
2 changed files with 5 additions and 5 deletions
8
README
8
README
|
@ -22,10 +22,10 @@ Building
|
||||||
|
|
||||||
If you'd like to build FENIX, first, make sure to download the kernel and libc
|
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
|
repositories into folders named "kernel" and "libc". Additionally, make sure
|
||||||
you've successfully built the cross-compiler and added ~/opt-test/cross (or
|
you've successfully built the cross-compiler and added ~/opt/cross (or wherever
|
||||||
wherever you've install the cross-compiler to) to your PATH. From there, you
|
you've install the cross-compiler to) to your PATH. From there, you should just
|
||||||
should just need to run `build.sh`. If you'd like an ISO, run `iso.sh` and if
|
need to run `build.sh`. If you'd like an ISO, run `iso.sh` and if you'd like to
|
||||||
you'd like to test it using `qemu-system-i386`, simply run `qemu.sh`.
|
test it using `qemu-system-i386`, simply run `qemu.sh`.
|
||||||
|
|
||||||
Portability
|
Portability
|
||||||
-----------
|
-----------
|
||||||
|
|
|
@ -10,7 +10,7 @@ tar -xvf gcc-9.2.0.tar.xz
|
||||||
# but, for now, this is what we'll use.
|
# but, for now, this is what we'll use.
|
||||||
# Besides, we'd need patches for a custom OS target
|
# Besides, we'd need patches for a custom OS target
|
||||||
TARGET=i686-elf
|
TARGET=i686-elf
|
||||||
PREFIX="$HOME/opt-test/cross"
|
PREFIX="$HOME/opt/cross"
|
||||||
PATH="$PREFIX/bin:$PATH"
|
PATH="$PREFIX/bin:$PATH"
|
||||||
|
|
||||||
# Go ahead and make sure the prefix exists
|
# Go ahead and make sure the prefix exists
|
||||||
|
|
Loading…
Reference in a new issue