Line 0
Link Here
|
|
|
1 |
--- SCP/makefile.orig 2020-08-23 21:58:56 UTC |
2 |
+++ SCP/makefile |
3 |
@@ -532,10 +532,12 @@ ifneq ($(DONT_USE_READER_THREAD),) |
4 |
endif |
5 |
|
6 |
|
7 |
-# Shut up annoying clang default warnings. |
8 |
+# Shut up annoying clang default warnings, and also fix |
9 |
+# multiply defined symbols on clang 11 and above |
10 |
|
11 |
-ifeq ($(GCC),clang) |
12 |
+ifeq ($(findstring clang,$(COMPILER_NAME)),clang) |
13 |
OS_CCDEFS += -Wno-parentheses -Wno-bitwise-op-parentheses -Wno-dangling-else |
14 |
+ CFLAGS_O += -fcommon |
15 |
endif |
16 |
|
17 |
|