diff options
author | Björn Gustavsson <[email protected]> | 2018-05-16 12:46:18 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2018-05-16 12:46:18 +0200 |
commit | e1c1482b0be0ee211f8dcb9d80525750af7dc197 (patch) | |
tree | 68bcdea79ecac4d24dc0efd79ba1b2fcb80269a4 /erts/emulator | |
parent | 3bacd65483df2de25fc90e1e8f786a65e76832be (diff) | |
parent | 13bcae1294760339f232f1e06083d168a4e8e3eb (diff) | |
download | otp-e1c1482b0be0ee211f8dcb9d80525750af7dc197.tar.gz otp-e1c1482b0be0ee211f8dcb9d80525750af7dc197.tar.bz2 otp-e1c1482b0be0ee211f8dcb9d80525750af7dc197.zip |
Merge pull request #1811 from bjorng/bjorn/disable-fpe-support
Disable the use of floating point exceptions
Diffstat (limited to 'erts/emulator')
-rw-r--r-- | erts/emulator/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/Makefile.in b/erts/emulator/Makefile.in index 5dfa60ee74..221cf84622 100644 --- a/erts/emulator/Makefile.in +++ b/erts/emulator/Makefile.in @@ -570,7 +570,7 @@ $(TTF_DIR)/OPCODES-GENERATED: $(OPCODE_TABLES) utils/beam_makeops -code-model @CODE_MODEL@ \ -outdir $(TTF_DIR) \ -DUSE_VM_PROBES=$(if $(USE_VM_PROBES),1,0) \ - -DNO_FPE_SIGNALS=$(if $filter(unreliable,$(FPE)),1,0) \ + -DNO_FPE_SIGNALS=$(if $(filter unreliable,$(FPE)),1,0) \ -emulator $(OPCODE_TABLES) && echo $? >$(TTF_DIR)/OPCODES-GENERATED GENERATE += $(TTF_DIR)/OPCODES-GENERATED |