diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-03 13:00:17 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-03 13:00:17 +0200 |
commit | 5d154bde3abbae5a275b3627c5f5dbbcc9b6d55b (patch) | |
tree | 3a98c280893b931e92dcb10c5374b7e89854e524 /toolchain | |
parent | 8ef4280d81f36492720c569803aec5da5e321a22 (diff) |
as discussed with phil, do not default toolchain to a specific cpu, we have -fhonour-copts, to detect when CFLAGS are not used
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/gcc/Makefile | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index 7616f2ab3..0d309b60f 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -87,29 +87,6 @@ else GCC_CONFOPTS+= --enable-target-optspace endif -ifeq ($(ARCH),arm) -GCC_CONFOPTS+= --with-float=$(ADK_TARGET_FLOAT) -ifneq ($(ADK_TARGET_FPU),) -GCC_CONFOPTS+= --with-fpu=$(ADK_TARGET_FPU) -endif -endif - -ifeq ($(ADK_CPU_ARM926EJ_S),y) -GCC_CONFOPTS+= --with-arch=armv5te --with-tune=arm1176jzf-s -endif - -ifeq ($(ADK_CPU_ARM1176JZF_S),y) -GCC_CONFOPTS+= --with-arch=armv6 --with-tune=arm1176jzf-s -endif - -ifeq ($(ADK_CPU_CORTEX_A9),y) -GCC_CONFOPTS+= --with-arch=armv7-a --with-tune=cortex-a9 -endif - -ifeq ($(ADK_CPU_SPARC_V9),y) -GCC_CONFOPTS+= --with-cpu=ultrasparc -endif - ifneq ($(ADK_TARGET_MIPS_ABI),) GCC_CONFOPTS+= --with-abi=${ADK_TARGET_MIPS_ABI} endif |