-rw-r--r-- | config.in | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -32,12 +32,15 @@ choice config TARGET_IPAQ boolean "iPAQ" config TARGET_RAMSES boolean "Ramses" + config TARGET_SIMPAD + boolean "SIMpad" + endchoice config OPTIMIZE boolean "Use optimizations" default "y" if ! TARGET_X86 @@ -58,26 +61,30 @@ config SPECFILE default "linux-g++" if TARGET_SHARP && X11 # default "linux-oz-g++" if TARGET_OZ default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) default "linux-g++" if TARGET_IPAQ && X11 default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) default "linux-g++" if TARGET_RAMSES && X11 + default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) + default "linux-g++" if TARGET_SIMPAD && X11 config CUSTOMFILE string default "custom-ipaq.h" if TARGET_IPAQ default "custom-sharp.h" if TARGET_SHARP default "custom-ramses.h" if TARGET_RAMSES + default "custom-ipaq.h" if TARGET_SIMPAD config OPTIMIZATIONS string "Optimization flags" depends OPTIMIZE default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES + default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD #config CROSS # string "Crosscompilation prefix" # default "arm-linux-" # help # Crosscompilation prefix is the prefix which will be prepended |