1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

SCons: make use_lto a global option and opt-in for iphone

Supersedes #12553, see discussion in #12552.
This commit is contained in:
Rémi Verschelde
2017-11-02 09:11:29 +01:00
parent 51b7fd90e6
commit cefdb34f6c
4 changed files with 7 additions and 4 deletions

View File

@@ -64,7 +64,6 @@ def get_opts():
return [
('mingw_prefix_32', 'MinGW prefix (Win32)', mingw32),
('mingw_prefix_64', 'MinGW prefix (Win64)', mingw64),
BoolVariable('use_lto', 'Use link time optimization (when using MingW)', False),
EnumVariable('debug_symbols', 'Add debug symbols to release version', 'yes', ('yes', 'no', 'full')),
]