From b386c44e5ea108775fc907ca3a66616455e16ea5 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Sun, 29 Apr 2012 02:18:17 +0200 Subject: [PATCH] Windows: always enable multicore compile --- common.gypi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common.gypi b/common.gypi index 7ec97abe..c2df528f 100644 --- a/common.gypi +++ b/common.gypi @@ -57,9 +57,6 @@ 'OmitFramePointers': 'true', 'EnableFunctionLevelLinking': 'true', 'EnableIntrinsicFunctions': 'true', - 'AdditionalOptions': [ - '/MP', # compile across multiple CPUs - ], }, 'VCLibrarianTool': { 'AdditionalOptions': [ @@ -84,6 +81,9 @@ 'ExceptionHandling': 1, # /EHsc 'SuppressStartupBanner': 'true', 'WarnAsError': 'false', + 'AdditionalOptions': [ + '/MP', # compile across multiple CPUs + ], }, 'VCLibrarianTool': { },