From a6304a8b64deaae6586991cf9289d6acf695f52c Mon Sep 17 00:00:00 2001 From: Denys Otrishko Date: Wed, 26 Sep 2018 13:36:44 +0300 Subject: [PATCH] build: add pgo specific variables to common.gypi Refs: https://github.com/nodejs/node/pull/22772#issuecomment-419930590 --- common.gypi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common.gypi b/common.gypi index 46711ac76dbb63..82dddf19182190 100644 --- a/common.gypi +++ b/common.gypi @@ -9,6 +9,8 @@ 'library%': 'static_library', # allow override to 'shared_library' for DLL/.so builds 'component%': 'static_library', # NB. these names match with what V8 expects 'msvs_multi_core_compile': '0', # we do enable multicore compiles, but not using the V8 way + 'enable_pgo_generate%': '0', + 'enable_pgo_use%': '0', 'python%': 'python', 'node_shared%': 'false',