diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-04 18:20:27 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-04 18:20:27 +0100 |
commit | 299862b6369ce2107f6f8a472813c3f1b5160e09 (patch) | |
tree | 20b2a72a16a099398d980459d92697cc564e1296 /toolchain/gcc/Makefile | |
parent | 883ff45f5b095457a2b8c3b58f5a51852ef56b93 (diff) | |
parent | 8742eed1875b53d62216f03f132cea48fa61dec5 (diff) |
Merge branch 'master' of git+ssh://openadk.org:/git/openadk
Diffstat (limited to 'toolchain/gcc/Makefile')
-rw-r--r-- | toolchain/gcc/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index bbbd3d09c..138e3a0d0 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -100,6 +100,10 @@ ifeq ($(ADK_CPU_CORTEX_A9),y) GCC_CONFOPTS+= --with-arch=armv7-a --with-tune=cortex-a9 --with-fpu=neon 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 |