diff options
author | Rickard Green <[email protected]> | 2014-02-24 14:34:05 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2014-02-24 14:34:05 +0100 |
commit | 093966d9c04b0ad4f194981df7e3c16d9eb519fd (patch) | |
tree | 2fe7e582be555a6cc267fdf55e28189ef7ed5211 /erts/configure.in | |
parent | 4acee7b02b53d785c444e886c39ed82ab76b52fe (diff) | |
parent | c7ddafbe6dbcc805a9758c4313f2d6b902983343 (diff) | |
download | otp-093966d9c04b0ad4f194981df7e3c16d9eb519fd.tar.gz otp-093966d9c04b0ad4f194981df7e3c16d9eb519fd.tar.bz2 otp-093966d9c04b0ad4f194981df7e3c16d9eb519fd.zip |
Merge branch 'rickard/configure-defaults/OTP-11723'
* rickard/configure-defaults/OTP-11723:
Always default to disabled floating point exceptions on Linux
Diffstat (limited to 'erts/configure.in')
-rw-r--r-- | erts/configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/erts/configure.in b/erts/configure.in index 46e5a15751..eecd8eb889 100644 --- a/erts/configure.in +++ b/erts/configure.in @@ -2798,6 +2798,11 @@ esac if test X${enable_fp_exceptions} = Xauto ; then case $host_os in + *linux*) + enable_fp_exceptions=no + AC_MSG_NOTICE([Floating point exceptions disabled by default on Linux]) ;; + *) + ;; darwin*) enable_fp_exceptions=no AC_MSG_NOTICE([Floating point exceptions disabled by default on MacOS X]) ;; |