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 be7404f commit 3694e35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,17 @@ def setup_defines_and_flags(env, src_out):
src_out.append("src/thirdparty/tracy/public/TracyClient.cpp")

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

if env["platform"] == "linux" or env["platform"] == "android":
env.Append(
LINKFLAGS=[
"-static-libgcc",
"-static-libstdc++",
],
]
)
print()

Expand Down

0 comments on commit 3694e35

Please sign in to comment.