Disable LTO on clang

This commit is contained in:
DrChat
2017-12-20 15:59:50 -06:00
parent a27c761a52
commit 7b956d3c04

View File

@@ -87,7 +87,8 @@ filter("platforms:Linux")
toolset("clang")
buildoptions({
-- "-mlzcnt", -- (don't) Assume lzcnt is supported.
"`pkg-config --cflags gtk+-x11-3.0`"
"`pkg-config --cflags gtk+-x11-3.0`",
"-fno-lto", -- Premake doesn't support LTO on clang
})
links({
"pthread",
@@ -98,7 +99,6 @@ filter("platforms:Linux")
"xcb",
"X11-xcb",
"GL",
"GLEW",
"vulkan",
"c++",
"c++abi"