Skip to content

Commit

Permalink
build: link with Security.framework in GN build
Browse files Browse the repository at this point in the history
PR-URL: #56895
Reviewed-By: Joyee Cheung <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
zcbenz authored and targos committed Feb 7, 2025
1 parent fe2694a commit 52399da
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion unofficial.gni
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,10 @@ template("node_gn_build") {
libs = [ "psapi.lib" ]
}
if (is_mac) {
frameworks = [ "CoreFoundation.framework" ]
frameworks = [
"CoreFoundation.framework",
"Security.framework",
]
}
if (is_posix) {
configs -= [ "//build/config/gcc:symbol_visibility_hidden" ]
Expand Down

0 comments on commit 52399da

Please sign in to comment.