Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
Signed-off-by: Alex J Lennon <ajlennon@dynamicdevices.co.uk>
  • Loading branch information
ajlennon committed Jul 20, 2024
1 parent 318e3da commit 1ec449f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def setup_defines_and_flags(env, src_out):
CPPPATH="opus/include"
)

if env["platform"] == "linux" or env["platform"] == "android" or env["platform"] == "ios" or env["platform"] == "macos" or env["platform"] == "web":
if env["platform"] == "linux" or env["platform"] == "android" or env["platform"] == "ios" or env["platform"] == "web":
env.Append(
LINKFLAGS=[
"-static-libgcc",
Expand All @@ -65,7 +65,7 @@ def setup_defines_and_flags(env, src_out):
LIBS=["opus"],
LIBPATH=["opus/build"],
)
if env["platform"] == "windows":
if env["platform"] == "windows" or env["platform"] == "macos":
env.Append(
LIBS=["opus"],
LIBPATH=["opus/build"],
Expand Down

0 comments on commit 1ec449f

Please sign in to comment.