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 bf7f862 commit fcb69cb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,15 @@ def setup_defines_and_flags(env, src_out):
LIBS=["opus"],
LIBPATH=["opus/build"],
)
if env["platform"] == "windows"::
env.Append(
LINKFLAGS=[
"-static-libgcc",
"-static-libstdc++",
],
LIBS=["opus"],
LIBPATH=["opus/build"],
)
print()


Expand Down

0 comments on commit fcb69cb

Please sign in to comment.