1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-07 19:53:17 +00:00

Merge pull request #18523 from hpvb/fix-clang-lto

Fix lto builds on clang compilers
This commit is contained in:
Max Hilbrunner
2018-04-30 17:12:13 +02:00
committed by GitHub

View File

@@ -275,8 +275,8 @@ if ARGUMENTS.get('gdnative_wrapper', False):
if gd_wrapper_env['use_lto']:
if not env.msvc:
gd_wrapper_env.Append(CCFLAGS=['--no-lto'])
gd_wrapper_env.Append(LINKFLAGS=['--no-lto'])
gd_wrapper_env.Append(CCFLAGS=['-fno-lto'])
gd_wrapper_env.Append(LINKFLAGS=['-fno-lto'])
else:
gd_wrapper_env.Append(CCFLAGS=['/GL-'])
gd_wrapper_env.Append(LINKFLAGS=['/LTCG:OFF'])