Add an option for building for arm in thumb mode

Change-Id: I5a46645064c2fe1c13287cf06c3244820b4e699e
This commit is contained in:
Martin Storsjo 2013-05-13 01:16:09 +03:00
parent 644587cfdd
commit 132422d9ab
2 changed files with 7 additions and 0 deletions

View File

@ -88,6 +88,7 @@ Build options:
${toggle_debug} enable/disable debug mode
${toggle_gprof} enable/disable gprof profiling instrumentation
${toggle_gcov} enable/disable gcov coverage instrumentation
${toggle_thumb} enable/disable building arm assembly in thumb mode
Install options:
${toggle_install_docs} control whether docs are installed
@ -819,6 +820,11 @@ EOF
enabled debug && add_asflags -g
asm_conversion_cmd="${source_path}/build/make/ads2gas.pl"
if enabled thumb; then
asm_conversion_cmd="$asm_conversion_cmd -thumb"
check_add_cflags -mthumb
check_add_asflags -mthumb -mimplicit-it=always
fi
;;
rvct)
CC=armcc

1
configure vendored
View File

@ -317,6 +317,7 @@ CMDLINE_SELECT="
optimizations
ccache
runtime_cpu_detect
thumb
libs
examples