Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
Signed-off-by: Alex J Lennon <[email protected]>
  • Loading branch information
ajlennon committed Jul 20, 2024
1 parent 1ec449f commit be7404f
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions lib_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,21 +54,16 @@ def setup_defines_and_flags(env, src_out):

env.Append(
CPPPATH="opus/include"
LIBS=["opus"],
LIBPATH=["opus/build"],
)

if env["platform"] == "linux" or env["platform"] == "android" or env["platform"] == "ios" or env["platform"] == "web":
if env["platform"] == "linux" or env["platform"] == "android":
env.Append(
LINKFLAGS=[
"-static-libgcc",
"-static-libstdc++",
],
LIBS=["opus"],
LIBPATH=["opus/build"],
)
if env["platform"] == "windows" or env["platform"] == "macos":
env.Append(
LIBS=["opus"],
LIBPATH=["opus/build"],
)
print()

Expand Down

0 comments on commit be7404f

Please sign in to comment.