diff options
author | Marvin Borner | 2019-09-14 17:05:06 +0200 |
---|---|---|
committer | Marvin Borner | 2019-09-14 17:05:06 +0200 |
commit | 36bbfd9184426576d38841bcabfa5ba2b59f726c (patch) | |
tree | 5f21ffd8181bdaf873fb0ed0787784392c2f8af6 /cross.sh | |
parent | 119d15393abe1bd0d31e7c9864799063b9b5dc28 (diff) |
Added very basic kernel and vga driver
Diffstat (limited to 'cross.sh')
-rwxr-xr-x | cross.sh | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -1,10 +1,11 @@ #!/usr/bin/env sh # Sets up a cross compiler +# TODO: Rewrite everything for 64-Bit -if [ ! -d "./cross64/" ]; then +if [ ! -d "./cross/" ]; then # Create directory - mkdir -p cross64 - cd cross64 || exit + mkdir -p cross + cd cross || exit DIR=$(pwd) # Get sources @@ -16,7 +17,7 @@ if [ ! -d "./cross64/" ]; then # Prepare compiling mkdir -p "${DIR}/opt/bin" export PREFIX="${DIR}/opt" - export TARGET=x86_64-elf + export TARGET=i686-elf export PATH="$PREFIX/bin:$PATH" # Compile binutilsq @@ -38,10 +39,10 @@ if [ ! -d "./cross64/" ]; then . cross.sh else # Should be sourced to take effect - cd cross64 || exit + cd cross || exit DIR=$(pwd) export PREFIX="${DIR}/opt" - export TARGET=x86_64-elf + export TARGET=i686-elf export PATH="$PREFIX/bin:$PATH" cd .. fi |