diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-04-26 06:42:16 -0500 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-04-26 06:42:23 -0500 |
commit | 298223b5421c861099adae911144ff33c64ffbe5 (patch) | |
tree | 8ca921fe0ebee2bb41bdc719515db04b00f7c7ff /target | |
parent | ae962e51a3800a9e95f135a6d09be7fe11b79f15 (diff) |
allow to build a softfp toolchain for arm, result tested on rpi
Diffstat (limited to 'target')
-rw-r--r-- | target/config/Config.in.float.choice | 4 | ||||
-rw-r--r-- | target/config/Config.in.float.default | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/target/config/Config.in.float.choice b/target/config/Config.in.float.choice index 65ec89d4e..e22ac65f3 100644 --- a/target/config/Config.in.float.choice +++ b/target/config/Config.in.float.choice @@ -14,4 +14,8 @@ config ADK_TARGET_HARD_FLOAT config ADK_TARGET_SOFT_FLOAT bool "soft-float" +config ADK_TARGET_SOFTFP_FLOAT + bool "softfp" + depends on ADK_TARGET_ARCH_ARM + endchoice diff --git a/target/config/Config.in.float.default b/target/config/Config.in.float.default index 886d85e5c..8c1f41bde 100644 --- a/target/config/Config.in.float.default +++ b/target/config/Config.in.float.default @@ -5,3 +5,4 @@ config ADK_TARGET_FLOAT string default "hard" if ADK_TARGET_HARD_FLOAT default "soft" if ADK_TARGET_SOFT_FLOAT + default "softfp" if ADK_TARGET_SOFTFP_FLOAT |