diff options
author | Sverker Eriksson <[email protected]> | 2011-11-17 14:13:42 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2011-11-17 14:17:40 +0100 |
commit | 327c072661840f671fc0041bc5e88bc69691d5aa (patch) | |
tree | 6a19e38381ef90097cf5cf21c6b8b3fd30b3972c | |
parent | 11892310e0a681aff0ce1fb8f5411b2098f5c9ba (diff) | |
download | otp-327c072661840f671fc0041bc5e88bc69691d5aa.tar.gz otp-327c072661840f671fc0041bc5e88bc69691d5aa.tar.bz2 otp-327c072661840f671fc0041bc5e88bc69691d5aa.zip |
otp_build: Disable FPE by default on Linux
FPE = floating point exceptions
-rwxr-xr-x | otp_build | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -174,9 +174,9 @@ set_config_flags () # the cross configuration have been moved here). if target_contains linux; then - XX=`echo $* | grep -v able-hipe` + XX=`echo $* | grep -v able-fp-exceptions` if [ "$*" = "$XX" ]; then - CONFIG_FLAGS="$CONFIG_FLAGS --disable-hipe" + CONFIG_FLAGS="$CONFIG_FLAGS --disable-fp-exceptions" fi fi if target_contains "univel-sysv4"; then |