diff options
author | 2016-01-04 13:28:40 +0100 | |
---|---|---|
committer | 2016-01-04 13:29:42 +0100 | |
commit | e0deb80b549e8c1683412080cda2536b28c756d0 (patch) | |
tree | 942de968988dbaca18c3b7a2d291d9619042debb /scripts/toolchain.lua | |
parent | 9ffe6faa4424a1d00b607e3187c62f492c992d16 (diff) |
Fix building on clang, executable fail starting due to mixed allocators (nw)
Diffstat (limited to 'scripts/toolchain.lua')
-rw-r--r-- | scripts/toolchain.lua | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua index aea8caa6769..5d3646b48ea 100644 --- a/scripts/toolchain.lua +++ b/scripts/toolchain.lua @@ -493,11 +493,6 @@ function toolchain(_buildDir, _subDir) configuration { "x32", "mingw-clang" } objdir ( _buildDir .. "mingw-clang/obj") buildoptions { "-m32" } - buildoptions { - "-isystem$(MINGW32)/i686-w64-mingw32/include/c++", - "-isystem$(MINGW32)/i686-w64-mingw32/include/c++/i686-w64-mingw32", - "-isystem$(MINGW32)/i686-w64-mingw32/include", - } configuration { "x32", "mingw-clang", "Release" } targetdir (_buildDir .. "mingw-clang/bin/x32/Release") @@ -508,11 +503,6 @@ function toolchain(_buildDir, _subDir) configuration { "x64", "mingw-clang" } objdir (_buildDir .. "mingw-clang/obj") buildoptions { "-m64" } - buildoptions { - "-isystem$(MINGW64)/x86_64-w64-mingw32/include/c++", - "-isystem$(MINGW64)/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32", - "-isystem$(MINGW64)/x86_64-w64-mingw32/include", - } configuration { "x64", "mingw-clang", "Release" } targetdir (_buildDir .. "mingw-clang/bin/x64/Release") |