From 3f4610447d16f06e89aa639172f84a2aac23a336 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 084bca14e0abaa..2621b5e327d5d8 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',