build.sh: add --target option

Just in case somebody wants to build a x86 WinCE compiler.
This commit is contained in:
Max Kellermann 2020-04-07 13:24:49 +02:00
parent 342fe695c3
commit 0397fb9dcc
1 changed files with 13 additions and 2 deletions

View File

@ -43,6 +43,7 @@ Usage: $0 [OPTIONS] ...
--prefix=PREFIX install toolchain in PREFIX
[$ac_default_prefix]
--host=HOST host on which the toolchain will run [BUILD]
--target=TARGET configure for building compilers for TARGET [arm-mingw32ce]
-j, --parallelism PARALLELISM Pass PARALLELISM as -jPARALLELISM
to make invocations.
--components=LIST specify which components to build
@ -102,6 +103,11 @@ do
--host=*)
host=$ac_optarg ;;
--target)
ac_prev=target ;;
--target=*)
target=$ac_optarg ;;
--incremental)
incremental=yes ;;
@ -455,9 +461,14 @@ while [ -n "$1" ]; do
shift
done
export TARGET="arm-mingw32ce"
#export TARGET="arm-wince-mingw32ce"
if [ "x${target}" != "x" ]; then
export TARGET="${target}"
else
export TARGET="arm-mingw32ce"
fi
export BUILD=`sh ${BASE_DIRECTORY}/gcc/config.guess`
if [ "x${host}" != "x" ]; then
export HOST="${host}"
else