From 2e2df04b3538c83e4e3ddc81308ca1bde3d80fc6 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Mon, 6 Feb 2012 15:37:37 +0100 Subject: [PATCH] Windows: disable RTTI and exceptions --- common.gypi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common.gypi b/common.gypi index d93bba77c8..68643b003a 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 ],