summaryrefslogtreecommitdiff
path: root/toolchain/gcc
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-02-18 07:53:15 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-02-18 07:53:15 +0100
commit937802ab6844351a530711d4363fd3842a482d4b (patch)
treedbb92b1374c96f6b5892454e45dd58464bd3490d /toolchain/gcc
parent97857425df0e2878902eb651e2ce71ac476c407b (diff)
add initial stuff for cubox-i, still waiting for the hardware, so fully untested
Diffstat (limited to 'toolchain/gcc')
-rw-r--r--toolchain/gcc/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile
index c547591a0..7566d3f20 100644
--- a/toolchain/gcc/Makefile
+++ b/toolchain/gcc/Makefile
@@ -90,7 +90,11 @@ endif
endif
ifeq ($(ADK_TARGET_SYSTEM_RASPBERRY_PI),y)
-GCC_CONFOPTS+= --with-arch=armv6 --with-fpu=vfp --with-float=hard
+GCC_CONFOPTS+= --with-arch=armv6 --with-tune=arm1176jzf-s --with-fpu=vfp --with-float=hard
+endif
+
+ifeq ($(ADK_TARGET_SYSTEM_CUBOX_I),y)
+GCC_CONFOPTS+= --with-arch=armv7-a --with-tune=cortex-a9 --with-fpu=neon --with-float=hard
endif
ifneq ($(ADK_TARGET_ABI),)