From fd224e6e9bfe0b9ae2d4c6c3cc60a1ea3e0b6304 Mon Sep 17 00:00:00 2001 From: Cheng Date: Mon, 3 Feb 2025 11:20:24 +0900 Subject: [PATCH] crypto: link with Security.framework in GN build --- unofficial.gni | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unofficial.gni b/unofficial.gni index 5149514ac4894f..7f618162135ce0 100644 --- a/unofficial.gni +++ b/unofficial.gni @@ -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" ]