diff options
author | Björn Gustavsson <[email protected]> | 2014-02-26 13:24:42 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2014-02-26 13:28:26 +0100 |
commit | f3646fe69c2b36ba51e3fd8d345856df5145362a (patch) | |
tree | 89d424765380f9ee8f030c5df70e1d91f0477132 | |
parent | 2202a8880f5472ce4bf65afdb967c70a12f35703 (diff) | |
download | otp-f3646fe69c2b36ba51e3fd8d345856df5145362a.tar.gz otp-f3646fe69c2b36ba51e3fd8d345856df5145362a.tar.bz2 otp-f3646fe69c2b36ba51e3fd8d345856df5145362a.zip |
Disable accidentally enabled floating point exceptions on MacOS X
In c7ddafbe, which disabled floating point exceptions on Linux,
floating point exceptions were accidentally enabled on MacOS X.
-rw-r--r-- | erts/configure.in | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/erts/configure.in b/erts/configure.in index 408c00c9e9..074882532f 100644 --- a/erts/configure.in +++ b/erts/configure.in @@ -2829,8 +2829,6 @@ if test X${enable_fp_exceptions} = Xauto ; then *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]) ;; |