summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--SConstruct8
-rw-r--r--misc/gcc/symbols-extension.map (renamed from misc/dist/linux/symbols-extension.map)0
-rw-r--r--misc/gcc/symbols-gdnative.map (renamed from misc/dist/linux/symbols-gdnative.map)0
3 files changed, 5 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index 140fe29..c77b469 100644
--- a/SConstruct
+++ b/SConstruct
@@ -167,11 +167,13 @@ env.Depends(sources, ssl + rtc)
# symbols using a GCC version script, or we might end up overriding symbols from other libraries.
# Using "-fvisibility=hidden" will not work, since libstdc++ explicitly exports its symbols.
symbols_file = None
-if env["platform"] == "linux":
+if env["platform"] == "linux" or (
+ env["platform"] == "windows" and env.get("use_mingw", False) and not env.get("use_llvm", False)
+):
if env["godot_version"] == "3":
- symbols_file = env.File("misc/dist/linux/symbols-gdnative.map")
+ symbols_file = env.File("misc/gcc/symbols-gdnative.map")
else:
- symbols_file = env.File("misc/dist/linux/symbols-extension.map")
+ symbols_file = env.File("misc/gcc/symbols-extension.map")
env.Append(
LINKFLAGS=[
"-Wl,--no-undefined,--version-script=" + symbols_file.abspath,
diff --git a/misc/dist/linux/symbols-extension.map b/misc/gcc/symbols-extension.map
index 5af224e..5af224e 100644
--- a/misc/dist/linux/symbols-extension.map
+++ b/misc/gcc/symbols-extension.map
diff --git a/misc/dist/linux/symbols-gdnative.map b/misc/gcc/symbols-gdnative.map
index d048dc3..d048dc3 100644
--- a/misc/dist/linux/symbols-gdnative.map
+++ b/misc/gcc/symbols-gdnative.map