diff options
author | Neil <nyamatongwe@gmail.com> | 2019-12-29 09:46:25 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-12-29 09:46:25 +1100 |
commit | a4e351dba6b49de1a84b4eb6b2c2f21dfdb86613 (patch) | |
tree | c39e1414d26e0e4cf04a27aa145e2177faa848ed | |
parent | 81f48e85bb01d5f7b1964b8db44c1a98016e8db9 (diff) | |
download | scintilla-mirror-a4e351dba6b49de1a84b4eb6b2c2f21dfdb86613.tar.gz |
Remove Clang option that is not needed with Clang 9.
flto-visibility-public-std was added by revision 6665 in 2018.
-rw-r--r-- | win32/makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/win32/makefile b/win32/makefile index 3fb3311ef..87d18722b 100644 --- a/win32/makefile +++ b/win32/makefile @@ -17,8 +17,7 @@ ifdef CLANG CXX = clang++ # Clang doesn't like omitting braces in array initialization but they just add noise, # __uuidof is a Microsoft extension but makes COM code neater, -# public visibility avoids warnings like 'locally defined symbol __std_terminate imported' -CLANG_OPTS = -Wno-missing-braces -Wno-language-extension-token -Xclang -flto-visibility-public-std +CLANG_OPTS = -Wno-missing-braces -Wno-language-extension-token else # MinGW GCC LIBSMINGW = -lstdc++ |