aboutsummaryrefslogtreecommitdiff
path: root/cross.sh
diff options
context:
space:
mode:
Diffstat (limited to 'cross.sh')
-rwxr-xr-x[-rw-r--r--]cross.sh14
1 files changed, 10 insertions, 4 deletions
diff --git a/cross.sh b/cross.sh
index c6a6900..a88212f 100644..100755
--- a/cross.sh
+++ b/cross.sh
@@ -1,10 +1,10 @@
#!/usr/bin/env sh
# Sets up a cross compiler
-if [ ! -d "./cross/" ]; then
+if [ ! -d "./cross64/" ]; then
# Create directory
- mkdir -p cross
- cd cross || exit
+ mkdir -p cross64
+ cd cross64 || exit
DIR=$(pwd)
# Get sources
@@ -32,10 +32,16 @@ if [ ! -d "./cross/" ]; then
make all-target-libgcc
make install-gcc
make install-target-libgcc
+
+ # Source exported variables
+ cd "${DIR}/.." || exit
+ . cross.sh
else
- cd cross || exit
+ # Should be sourced to take effect
+ cd cross64 || exit
DIR=$(pwd)
export PREFIX="${DIR}/opt"
export TARGET=x86_64-elf
export PATH="$PREFIX/bin:$PATH"
+ cd ..
fi