Browse Source

scripts: waifulib: compiler_optimizations: fixes for LTO

pull/2/head
Alibek Omarov 1 year ago
parent
commit
c54e1625d1
  1. 8
      scripts/waifulib/compiler_optimizations.py

8
scripts/waifulib/compiler_optimizations.py

@ -99,13 +99,13 @@ CFLAGS = { @@ -99,13 +99,13 @@ CFLAGS = {
LTO_CFLAGS = {
'msvc': ['/GL'],
'gcc': ['-flto'],
'gcc': ['-flto=auto'],
'clang': ['-flto']
}
LTO_LINKFLAGS = {
'msvc': ['/LTCG'],
'gcc': ['-flto'],
'gcc': ['-flto=auto'],
'clang': ['-flto']
}
@ -177,4 +177,8 @@ def get_optimization_flags(conf): @@ -177,4 +177,8 @@ def get_optimization_flags(conf):
# remove fvisibility to allow everything to be exported by default
cflags.remove('-fvisibility=hidden')
# on all compilers (except MSVC?) we need to copy CFLAGS to LINKFLAGS
if conf.options.LTO and conf.env.COMPILER_CC != 'msvc':
linkflags += cflags
return cflags, linkflags

Loading…
Cancel
Save