This commit is contained in:
Daniel
2018-10-20 01:52:52 +02:00
parent 747ddcafe8
commit 52a2740846
+6 -5
View File
@@ -3,16 +3,17 @@ export PREFIX="`pwd`/rel-bin/${TARGET}"
export PATH="${PREFIX}/bin:${PATH}"
export OUT="`pwd`/out"
if [ "${2}" == "64" ]; then
case "${2}" in
64)
export CC="cc -m64"
export CXX="c++ -m64"
elif [ "${2}" == "32" ]; then
export CXX="c++ -m64" ;;
32)
export CC="cc -m32"
export CXX="c++ -m32"
else
*)
export CC="cc"
export CXX="c++"
fi
esac
#### JEŚLI BĘDĄ NOWE WERSJE BINUTILS'A i GCC PROSZĘ ZMIENIĆ NUMER!!!
export binutils_version="2.31" #TU ZMIENIAMY!