From a90637a085c9be2e78e98a05927c64ad97811c93 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 PR-URL: https://github.com/nodejs/node/pull/23102 Reviewed-By: Refael Ackermann Reviewed-By: Richard Lau Reviewed-By: James M Snell --- common.gypi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common.gypi b/common.gypi index a809aa277e30ad..48fc8d9322fb42 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',