From c69caf2721369a95822ec759ef4f37479ef02da0 Mon Sep 17 00:00:00 2001 From: Daniel Sanchez Quiros Date: Tue, 14 Feb 2023 10:42:19 +0100 Subject: [PATCH] Added missing linking flags --- .cargo/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 5bc05eb..4838dd9 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,4 +1,4 @@ [target.'cfg(target_os = "macos")'] # when using osx, we need to link against some golang libraries, it did just work with this missing flags # from: https://github.com/golang/go/issues/42459 -rustflags = ["-C", "link-args=-framework CoreFoundation -framework Security"] \ No newline at end of file +rustflags = ["-C", "link-args=-framework CoreFoundation -framework Security -framework CoreServices"] \ No newline at end of file