From 7a10b86ab705c2e8181541d0bea2ca25a15e8226 Mon Sep 17 00:00:00 2001 From: Refael Ackermann Date: Mon, 3 Sep 2018 21:58:54 -0400 Subject: [PATCH] build,win: generate single PDB file per target MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * previusly set to generate a .pdb file for each .obj file * enables clcache PR-URL: https://github.com/nodejs/node/pull/22698 Reviewed-By: João Reis --- common.gypi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.gypi b/common.gypi index 9864e8374e7..273c6b241a4 100644 --- a/common.gypi +++ b/common.gypi @@ -269,7 +269,7 @@ 'msvs_settings': { 'VCCLCompilerTool': { 'StringPooling': 'true', # pool string literals - 'DebugInformationFormat': 3, # Generate a PDB + 'DebugInformationFormat': 1, # /Z7 embed info in .obj files 'WarningLevel': 3, 'BufferSecurityCheck': 'true', 'ExceptionHandling': 0, # /EHsc