diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-02-18 11:28:54 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-02-18 11:28:54 +0100 |
commit | 648ffb1bc515c65c97b964edb0054db83840f163 (patch) | |
tree | b414cff5bf5bf8b63f04108d8cebf815620b9298 /toolchain/gcc | |
parent | f9e8a355d7ff88bae17ea9f2198fbf3f990cd1bc (diff) | |
parent | 937802ab6844351a530711d4363fd3842a482d4b (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'toolchain/gcc')
-rw-r--r-- | toolchain/gcc/Makefile | 6 |
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),) |