aboutsummaryrefslogtreecommitdiff
path: root/common.gypi
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2015-01-08 11:19:16 +0100
committerBert Belder <bertbelder@gmail.com>2015-01-08 11:42:10 +0100
commitda9eff80a3e9042f335867436617f940e86dbf0d (patch)
tree1ee52b1294ec87001e4706f219b6f0dbeaabd69a /common.gypi
parentc70d192ab3637969b0607f9a4fad6c3bdffae692 (diff)
downloadandroid-node-v8-da9eff80a3e9042f335867436617f940e86dbf0d.tar.gz
android-node-v8-da9eff80a3e9042f335867436617f940e86dbf0d.tar.bz2
android-node-v8-da9eff80a3e9042f335867436617f940e86dbf0d.zip
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 f8cc82ce0d..0a9008cc20 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',
},