diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-11-16 18:44:30 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-11-16 18:44:30 +0100 |
commit | 1c2054ea95c279ae221b354f1f33d01a819c4d0e (patch) | |
tree | 990ea624ecc914c7e783f58ff7b72affa43e529a /toolchain/uclibc-ng | |
parent | 47b7766f267e3db914b6f16667d18543ef78ae5f (diff) |
disable FPU for sh2/sh2a
Diffstat (limited to 'toolchain/uclibc-ng')
-rw-r--r-- | toolchain/uclibc-ng/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/toolchain/uclibc-ng/Makefile b/toolchain/uclibc-ng/Makefile index 4c39b5af5..16923265e 100644 --- a/toolchain/uclibc-ng/Makefile +++ b/toolchain/uclibc-ng/Makefile @@ -222,6 +222,7 @@ ifeq ($(ADK_CPU_SH3),y) $(SED) 's/.*\(CONFIG_SH3\).*/\1=y/' ${WRKBUILD}/.config endif ifeq ($(ADK_CPU_SH2),y) + $(SED) 's/.*\(UCLIBC_HAS_FPU\).*/# \1 is not set/' ${WRKBUILD}/.config $(SED) 's/.*\(CONFIG_SH2A\).*/# \1 is not set/' ${WRKBUILD}/.config $(SED) 's/.*\(CONFIG_SH3\).*/# \1 is not set/' ${WRKBUILD}/.config $(SED) 's/.*\(CONFIG_SH4\).*/# \1 is not set/' ${WRKBUILD}/.config @@ -229,6 +230,7 @@ ifeq ($(ADK_CPU_SH2),y) $(SED) 's/.*\(CONFIG_SH2\).*/\1=y/' ${WRKBUILD}/.config endif ifeq ($(ADK_CPU_SH2A),y) + $(SED) 's/.*\(UCLIBC_HAS_FPU\).*/# \1 is not set/' ${WRKBUILD}/.config $(SED) 's/.*\(CONFIG_SH2A\).*/# \1 is not set/' ${WRKBUILD}/.config $(SED) 's/.*\(CONFIG_SH3\).*/# \1 is not set/' ${WRKBUILD}/.config $(SED) 's/.*\(CONFIG_SH4\).*/# \1 is not set/' ${WRKBUILD}/.config |