[Build] Use built-in lto option.

This commit is contained in:
Dave Davenport 2022-11-17 12:13:14 +01:00
parent c82754307c
commit c9faa69a1b
2 changed files with 1 additions and 3 deletions

View File

@ -30,8 +30,7 @@ foreach f : flags
endif
endforeach
if get_option('lto')
add_project_arguments('-flto', language: 'c')
if get_option('b_lto')
add_project_arguments('-Werror=odr', language: 'c')
add_project_arguments('-Werror=lto-type-mismatch', language: 'c')
add_project_arguments('-Werror=strict-aliasing', language: 'c')

View File

@ -2,4 +2,3 @@ option('drun', type: 'boolean', value: true, description: 'Desktop file mode')
option('window', type: 'boolean', value: true, description: 'Window switcher mode')
option('check', type: 'feature', description: 'Build and run libcheck-based tests')
option('imdkit', type: 'boolean', value: true, description: 'IMDKit support')
option('lto', type: 'boolean', value: false, description: 'Compile with lto')