Skip to content

Commit

Permalink
Add missing macOS system libraries
Browse files Browse the repository at this point in the history
Required for Wasmer >= 4.3.1
Upstream merge from v0.3.5-godot-3
  • Loading branch information
Ashton Meuser authored and Ashton Meuser committed Jun 1, 2024
1 parent 88785a3 commit e9f7b0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SCsub
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if env["platform"] in ["linux", "linuxbsd", "x11"]:
env["LIBRUNTIMESUFFIX"] = ".a"
elif env["platform"] in ["osx", "macos"]:
env["LIBRUNTIMESUFFIX"] = ".a"
env.Append(LINKFLAGS=["-framework", "Security"])
env.Append(LINKFLAGS=["-framework", "Security", "-framework", "CoreFoundation", "-framework", "SystemConfiguration"])
elif env["platform"] == "windows":
if env.get("use_mingw"): # MinGW
env["LIBRUNTIMESUFFIX"] = ".a"
Expand Down

0 comments on commit e9f7b0a

Please sign in to comment.