Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at flake-libs 16 lines 576 B view raw
1Disable v8 system instrumentation on Darwin 2 3On Darwin, the v8 system instrumentation requires the header "os/signpost.h" 4which is available since apple_sdk 11+. See: https://github.com/nodejs/node/issues/39584 5 6--- old/tools/v8_gypfiles/features.gypi 7+++ new/tools/v8_gypfiles/features.gypi 8@@ -62,7 +62,7 @@ 9 }, { 10 'is_component_build': 0, 11 }], 12- ['OS == "win" or OS == "mac"', { 13+ ['OS == "win"', { 14 # Sets -DENABLE_SYSTEM_INSTRUMENTATION. Enables OS-dependent event tracing 15 'v8_enable_system_instrumentation': 1, 16 }, {