Skip to content

Commit

Permalink
build: disable ICF for mksnapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
LeszekSwirski and targos committed Apr 27, 2024
1 parent aa0873d commit 47d3875
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
5 changes: 5 additions & 0 deletions node.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -1319,6 +1319,11 @@
'winmm.lib',
'Ws2_32.lib',
],
'msbuild_settings': {
'Link': {
'EnableCOMDATFolding': 'false', # /OPT:NOICF
},
},
}],
# Avoid excessive LTO
['enable_lto=="true"', {
Expand Down
7 changes: 7 additions & 0 deletions tools/v8_gypfiles/v8.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -1700,6 +1700,13 @@
['enable_lto=="true"', {
'ldflags': [ '-fno-lto' ],
}],
['OS=="win"', {
'msbuild_settings': {
'Link': {
'EnableCOMDATFolding': 'false', # /OPT:NOICF
},
},
}],
],
}, # mksnapshot
{
Expand Down
19 changes: 18 additions & 1 deletion unofficial.gni
Original file line number Diff line number Diff line change
Expand Up @@ -235,13 +235,30 @@ template("node_gn_build") {
if (node_use_node_snapshot) {
if (current_toolchain == v8_snapshot_toolchain) {
executable("node_mksnapshot") {
configs += [ ":node_internal_config" ]
configs += [ ":node_internal_config", ":disable_icf" ]
sources = [
"src/node_snapshot_stub.cc",
"tools/snapshot/node_mksnapshot.cc",
]
deps = [ ":libnode" ]
}

# This config disables a link time optimization "ICF", which may merge
# different functions into one if the function signature and body of them are
# identical.
#
# ICF breaks 1:1 mappings of the external references for V8 snapshot, so we
# disable it while taking a V8 snapshot.
config("disable_icf") {
visibility = [ ":*" ] # Only targets in this file can depend on this.
if (is_win) {
ldflags = [ "/OPT:NOICF" ] # link.exe, but also lld-link.exe.
} else if (is_apple && !use_lld) {
ldflags = [ "-Wl,-no_deduplicate" ] # ld64.
} else if (use_gold || use_lld) {
ldflags = [ "-Wl,--icf=none" ]
}
}
}

action("run_node_mksnapshot") {
Expand Down

0 comments on commit 47d3875

Please sign in to comment.