Skip to content

Commit

Permalink
Use default (universal) architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashton Meuser authored and ashtonmeuser committed Jun 13, 2024
1 parent 6050d35 commit b2df936
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ elif env["wasm_runtime"] == "wasmtime":
if env["platform"] in ["osx", "macos"]:
env.Prepend(CFLAGS=["-std=c11"])
env.Prepend(CXXFLAGS=["-std=c++14"])
env.Append(CCFLAGS=["-arch", "x86_64", "-Wall", "-g", "-O3"])
env.Append(LINKFLAGS=["-arch", "x86_64", "-framework", "Security", "-framework", "CoreFoundation", "-framework", "SystemConfiguration"])
env.Append(CCFLAGS=["-Wall", "-g", "-O3"])
env.Append(LINKFLAGS=["-framework", "Security", "-framework", "CoreFoundation", "-framework", "SystemConfiguration"])
elif env["platform"] == "linux":
env.Prepend(CFLAGS=["-std=c11"])
env.Prepend(CXXFLAGS=["-std=c++14"])
Expand Down

0 comments on commit b2df936

Please sign in to comment.