Skip to content

Commit

Permalink
Disable ICF for node_mksnapshot (nodejs#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeszekSwirski authored and victorgomes committed Apr 23, 2024
1 parent 923ef91 commit 8d14333
Showing 1 changed file with 18 additions and 1 deletion.
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 8d14333

Please sign in to comment.