diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2023-12-22 12:47:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-22 12:47:24 +0100 |
commit | 86d080b328b4367984cd7932bd1ce676e9ca5103 (patch) | |
tree | f27f2a0513032a14ed4b49ecd448bcbfafaad735 /misc/gcc | |
parent | fa28efa51d232c7e3cd0fe8100861c5d518eefd0 (diff) | |
parent | 1831677f6366db9ee8ff08497f5dc58ae396b057 (diff) | |
download | fork-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.map | 6 | ||||
-rw-r--r-- | misc/gcc/symbols-gdnative.map | 9 |
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: + *; +}; |