configure: add --32-bit option to build a 32-bit simulator/application

I use this to test duke3d in the sim, because it does some nasty pointer
arithmetic with 32-bit ints.

Should be useful for other things as well.

Change-Id: I807c81b32c61538de9edc3fca77fde193dc4e617
This commit is contained in:
Franklin Wei 2019-06-17 23:04:42 -04:00
parent 213cdfc109
commit 7b118eccac
1 changed files with 10 additions and 0 deletions

10
tools/configure vendored
View File

@ -271,6 +271,13 @@ simcc () {
fibers=""
endian="" # endianess of the dap doesnt matter here
# build a 32-bit simulator
if [ "$ARG_32BIT" = "1" ]; then
echo "Building 32-bit simulator"
GCCOPTS="$GCCOPTS -m32"
LDOPTS="$LDOPTS -m32"
fi
# default output binary name, don't override app_get_platform()
if [ "$app_type" != "sdl-app" ]; then
output="rockboxui"
@ -1361,6 +1368,7 @@ help() {
--no-sdl-threads Disallow use of SDL threads. This prevents the default
behavior of falling back to them if no native thread
support was found.
--32-bit Force a 32-bit simulator (use with --sdl-threads for duke3d)
--prefix Target installation directory
--compiler-prefix Override compiler prefix (inherently dangerous)
--help Shows this message (must not be used with other options)
@ -1383,6 +1391,7 @@ ARG_VOICE=
ARG_ARM_THUMB=
ARG_PREFIX="$PREFIX"
ARG_THREAD_SUPPORT=
ARG_32BIT=
err=
for arg in "$@"; do
case "$arg" in
@ -1401,6 +1410,7 @@ for arg in "$@"; do
--voice=*) ARG_VOICE=`echo "$arg" | cut -d = -f 2`;;
--thumb) ARG_ARM_THUMB=1;;
--no-thumb) ARG_ARM_THUMB=0;;
--32-bit) ARG_32BIT=1;;
--sdl-threads)ARG_THREAD_SUPPORT=1;;
--no-sdl-threads)
ARG_THREAD_SUPPORT=0;;