2015-06-30 12:46:07 +03:00
|
|
|
import org.doomedsociety.gradlecpp.cfg.BinaryKind
|
|
|
|
import org.doomedsociety.gradlecpp.gcc.GccToolchainConfig
|
|
|
|
import org.doomedsociety.gradlecpp.gcc.OptimizationLevel
|
|
|
|
|
|
|
|
rootProject.ext.createIccConfig = { boolean release, BinaryKind binKind ->
|
2015-12-05 22:40:30 +03:00
|
|
|
GccToolchainConfig cfg
|
|
|
|
if (release) {
|
|
|
|
cfg = new GccToolchainConfig(
|
|
|
|
compilerOptions: new GccToolchainConfig.CompilerOptions(
|
|
|
|
optimizationLevel: OptimizationLevel.LEVEL_3,
|
|
|
|
stackProtector: false,
|
2016-06-14 01:13:13 +03:00
|
|
|
interProceduralOptimizations: true, // -ipo
|
2015-12-05 22:40:30 +03:00
|
|
|
|
|
|
|
noBuiltIn: true,
|
|
|
|
|
|
|
|
intelExtensions: false,
|
|
|
|
asmBlocks: true,
|
|
|
|
|
2017-07-01 23:40:10 +03:00
|
|
|
positionIndependentCode: false,
|
|
|
|
|
|
|
|
extraDefines: [
|
|
|
|
'_GLIBCXX_USE_CXX11_ABI': 0, // don't use specific c++11 features from GCC 5.X for backward compatibility to earlier version ABI libstdc++.so.6
|
|
|
|
]
|
2015-12-05 22:40:30 +03:00
|
|
|
),
|
|
|
|
linkerOptions: new GccToolchainConfig.LinkerOptions(
|
2016-06-14 01:13:13 +03:00
|
|
|
interProceduralOptimizations: true, // -ipo
|
2015-12-05 22:40:30 +03:00
|
|
|
stripSymbolTable: true,
|
2016-10-05 18:27:50 +03:00
|
|
|
staticLibStdCpp: false,
|
2017-07-01 23:40:10 +03:00
|
|
|
staticLibGcc: false,
|
2015-12-05 22:40:30 +03:00
|
|
|
staticIntel: true,
|
|
|
|
),
|
|
|
|
librarianOptions: new GccToolchainConfig.LibrarianOptions(
|
|
|
|
)
|
|
|
|
)
|
|
|
|
} else {
|
2017-11-22 20:27:55 +03:00
|
|
|
// debug
|
2015-12-05 22:40:30 +03:00
|
|
|
cfg = new GccToolchainConfig(
|
|
|
|
compilerOptions: new GccToolchainConfig.CompilerOptions(
|
|
|
|
optimizationLevel: OptimizationLevel.DISABLE,
|
|
|
|
stackProtector: true,
|
|
|
|
interProceduralOptimizations: false,
|
|
|
|
|
|
|
|
noBuiltIn: true,
|
|
|
|
intelExtensions: false,
|
|
|
|
asmBlocks: true,
|
|
|
|
|
|
|
|
extraDefines: [
|
2017-07-01 23:40:10 +03:00
|
|
|
'_GLIBCXX_USE_CXX11_ABI': 0, // don't use specific c++11 features from GCC 5.X for backward compatibility to earlier version ABI libstdc++.so.6
|
2015-12-05 22:40:30 +03:00
|
|
|
]
|
|
|
|
),
|
|
|
|
linkerOptions: new GccToolchainConfig.LinkerOptions(
|
|
|
|
interProceduralOptimizations: false,
|
|
|
|
stripSymbolTable: false,
|
2016-10-05 18:27:50 +03:00
|
|
|
staticLibStdCpp: false,
|
2017-07-01 23:40:10 +03:00
|
|
|
staticLibGcc: false,
|
2015-12-05 22:40:30 +03:00
|
|
|
staticIntel: true,
|
|
|
|
),
|
|
|
|
librarianOptions: new GccToolchainConfig.LibrarianOptions(
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2018-10-26 19:30:18 +03:00
|
|
|
cfg.singleDefines('REGAMEDLL_SSE')
|
2018-05-20 18:28:03 +03:00
|
|
|
cfg.singleDefines('LINUX', '_LINUX')
|
2015-12-05 22:40:30 +03:00
|
|
|
return cfg
|
2015-06-30 12:46:07 +03:00
|
|
|
}
|