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>2012-02-06 18:37:37 +0400
committerBert Belder <bertbelder@gmail.com>2012-02-06 18:59:08 +0400
commit2e2df04b3538c83e4e3ddc81308ca1bde3d80fc6 (patch)
tree3af1f2ab90b2f1c78d06f3df9f7034b93d9b0e00 /common.gypi
parent74a8215a8699f89ee4b82ca616a4eafa3b11203b (diff)
Windows: disable RTTI and exceptions
Diffstat (limited to 'common.gypi')
-rw-r--r--common.gypi2
1 files changed, 2 insertions, 0 deletions
diff --git a/common.gypi b/common.gypi
index d93bba77c86..68643b003a5 100644
--- a/common.gypi
+++ b/common.gypi
@@ -53,6 +53,8 @@
'OmitFramePointers': 'true',
'EnableFunctionLevelLinking': 'true',
'EnableIntrinsicFunctions': 'true',
+ 'RuntimeTypeInfo': 'false',
+ 'ExceptionHandling': '0',
'AdditionalOptions': [
'/MP', # compile across multiple CPUs
],