summaryrefslogtreecommitdiff
path: root/tools/rtc.py
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2023-12-22 02:10:20 +0100
committerGitHub <noreply@github.com>2023-12-22 02:10:20 +0100
commit81239d820dc14a045f10353d2b1fbd935a5246d4 (patch)
tree8fe3c7cc594db1ee2b07fb391002870440e65880 /tools/rtc.py
parentec0ededcdef7512517aa7aaa9bd49652cece4770 (diff)
parentb0efc17d3b898206c2e1c98ad4884e404808c854 (diff)
downloadfork-godot-webrtc-native-81239d820dc14a045f10353d2b1fbd935a5246d4.tar.gz
fork-godot-webrtc-native-81239d820dc14a045f10353d2b1fbd935a5246d4.tar.bz2
fork-godot-webrtc-native-81239d820dc14a045f10353d2b1fbd935a5246d4.zip
Merge pull request #131 from Faless/fix/linux_only_export_init_symbol
[Linux] Only export extension init symbol
Diffstat (limited to 'tools/rtc.py')
-rw-r--r--tools/rtc.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/rtc.py b/tools/rtc.py
index 6882bb4..b4d9173 100644
--- a/tools/rtc.py
+++ b/tools/rtc.py
@@ -37,6 +37,8 @@ def build_library(env, ssl):
# Configure env.
if env["platform"] == "windows":
env.PrependUnique(LIBS=["iphlpapi", "bcrypt"])
+ if env["platform"] == "linux":
+ env.PrependUnique(LIBS=["pthread"])
env.Prepend(LIBS=list(filter(lambda f: str(f).endswith(lib_ext), rtc)))
env.Append(CPPPATH=["#thirdparty/libdatachannel/include"])