Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2015-01-08 13:19:16 +0300
committerBert Belder <bertbelder@gmail.com>2015-01-08 13:42:10 +0300
commitda9eff80a3e9042f335867436617f940e86dbf0d (patch)
tree1ee52b1294ec87001e4706f219b6f0dbeaabd69a /common.gypi
parentc70d192ab3637969b0607f9a4fad6c3bdffae692 (diff)
win: disable exception handling for all builds
Previously exception handling was disabled in release builds, but enabled in debug builds. That makes no sense. PR-URL: https://github.com/iojs/io.js/pull/258 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'common.gypi')
-rw-r--r--common.gypi3
1 files changed, 1 insertions, 2 deletions
diff --git a/common.gypi b/common.gypi
index f8cc82ce0d6..0a9008cc20d 100644
--- a/common.gypi
+++ b/common.gypi
@@ -105,7 +105,6 @@
'EnableFunctionLevelLinking': 'true',
'EnableIntrinsicFunctions': 'true',
'RuntimeTypeInfo': 'false',
- 'ExceptionHandling': '0',
'AdditionalOptions': [
'/MP', # compile across multiple CPUs
],
@@ -134,7 +133,7 @@
'DebugInformationFormat': 3, # Generate a PDB
'WarningLevel': 3,
'BufferSecurityCheck': 'true',
- 'ExceptionHandling': 1, # /EHsc
+ 'ExceptionHandling': 0, # /EHsc
'SuppressStartupBanner': 'true',
'WarnAsError': 'false',
},