diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-05-31 16:01:00 -0500 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-06-04 03:54:19 -0500 |
commit | b92dc96d7f82727329d9e0939748a57b3e6d402e (patch) | |
tree | 79d854cc0c71cadcebf90ed86a4fa5fc4b0c59b1 /toolchain/gcc | |
parent | 6c70f9e7636910390613f4ff7aa3a605d6656fb1 (diff) |
add basic infrastructure for superh toolchains with sh2/sh3/sh4a cpus
Diffstat (limited to 'toolchain/gcc')
-rw-r--r-- | toolchain/gcc/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index e3974ff31..5aceca03d 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -123,8 +123,22 @@ GCC_CONFOPTS+= --with-endian=little else GCC_CONFOPTS+= --with-endian=big endif +ifeq ($(ADK_CPU_SH2),y) +GCC_FINAL_CONFOPTS+= --with-multilib-list=m2 +endif +ifeq ($(ADK_CPU_SH2A),y) +GCC_FINAL_CONFOPTS+= --with-multilib-list=m2a +endif +ifeq ($(ADK_CPU_SH3),y) +GCC_FINAL_CONFOPTS+= --with-multilib-list=m3 +endif +ifeq ($(ADK_CPU_SH4),y) GCC_FINAL_CONFOPTS+= --with-multilib-list=m4,m4-nofpu endif +ifeq ($(ADK_CPU_SH4A),y) +GCC_FINAL_CONFOPTS+= --with-multilib-list=m4a,m4a-nofpu +endif +endif ifeq ($(ADK_TARGET_ARCH_X86),y) ifeq ($(ADK_TARGET_KERNEL_64),y) |