diff options
author | kaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-11-29 09:24:07 +0000 |
---|---|---|
committer | kaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-11-29 09:24:07 +0000 |
commit | fa88a75e8c0801a74107a42bd0db1df588c3d386 (patch) | |
tree | ef9864620a2a653d4ef251654a4d33d557059d92 | |
parent | cb3c89e42ba96977738ff7e32ef6295fb3dbb3df (diff) |
enable using soft-float regardless of having a fpu
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38939 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | toolchain/Config.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in index 0d139136e0..7302e9f874 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -15,8 +15,8 @@ menuconfig TARGET_OPTIONS config SOFT_FLOAT bool "Use software floating point by default" if TARGET_OPTIONS - default y - depends on (arm || armeb || powerpc || mipsel || mips || mips64el || mips64) && !HAS_FPU + default y if !HAS_FPU + depends on arm || armeb || powerpc || mipsel || mips || mips64el || mips64 help If your target CPU does not have a Floating Point Unit (FPU) or a kernel FPU emulator, but you still wish to support floating point |