summaryrefslogtreecommitdiff
path: root/misc/gcc
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2023-12-22 12:47:24 +0100
committerGitHub <noreply@github.com>2023-12-22 12:47:24 +0100
commit86d080b328b4367984cd7932bd1ce676e9ca5103 (patch)
treef27f2a0513032a14ed4b49ecd448bcbfafaad735 /misc/gcc
parentfa28efa51d232c7e3cd0fe8100861c5d518eefd0 (diff)
parent1831677f6366db9ee8ff08497f5dc58ae396b057 (diff)
downloadfork-godot-webrtc-native-86d080b328b4367984cd7932bd1ce676e9ca5103.tar.gz
fork-godot-webrtc-native-86d080b328b4367984cd7932bd1ce676e9ca5103.tar.bz2
fork-godot-webrtc-native-86d080b328b4367984cd7932bd1ce676e9ca5103.zip
Merge pull request #134 from Faless/fix/mingw_only_export_init_symbol
[Windows/MinGW] Only export extension init symbol
Diffstat (limited to 'misc/gcc')
-rw-r--r--misc/gcc/symbols-extension.map6
-rw-r--r--misc/gcc/symbols-gdnative.map9
2 files changed, 15 insertions, 0 deletions
diff --git a/misc/gcc/symbols-extension.map b/misc/gcc/symbols-extension.map
new file mode 100644
index 0000000..5af224e
--- /dev/null
+++ b/misc/gcc/symbols-extension.map
@@ -0,0 +1,6 @@
+{
+ global:
+ webrtc_extension_init;
+ local:
+ *;
+};
diff --git a/misc/gcc/symbols-gdnative.map b/misc/gcc/symbols-gdnative.map
new file mode 100644
index 0000000..d048dc3
--- /dev/null
+++ b/misc/gcc/symbols-gdnative.map
@@ -0,0 +1,9 @@
+{
+ global:
+ godot_gdnative_singleton;
+ godot_gdnative_init;
+ godot_gdnative_terminate;
+ godot_nativescript_init;
+ local:
+ *;
+};