-rw-r--r-- | Makefile.test | 6 | ||||
-rw-r--r-- | config.in.in | 11 |
2 files changed, 17 insertions, 0 deletions
diff --git a/Makefile.test b/Makefile.test index 11fec40..209eef3 100644 --- a/Makefile.test +++ b/Makefile.test @@ -95,4 +95,10 @@ endif export QMAKESPEC=$(QMAKESPECSDIR)/$(patsubst "%",%,$(CONFIG_SPECFILE)) +ifdef CONFIG_OPTIMIZATIONS +export CFLAGS_RELEASE=$(patsubst "%,%,$(CONFIG_OPTIMIZATIONS)) +export CFLAGS_RELEASE:=$(patsubst %",%,$(CFLAGS_RELEASE)) +$(warning CFLAGS_RELEASE is $(CFLAGS_RELEASE)) +endif + all clean: $(subdir-y) diff --git a/config.in.in b/config.in.in index 7af1f17..679292f 100644 --- a/config.in.in +++ b/config.in.in @@ -35,4 +35,8 @@ choice endchoice +config OPTIMIZE + boolean "Use optimizations" + default "y" if ! TARGET_X86 + config SPECFILE string @@ -50,4 +54,11 @@ config CUSTOMFILE default "custom-sharp.h" if TARGET_SHARP + +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 + #config CROSS # string "Crosscompilation prefix" |