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-01-12 16:52:42 +03:00
|
|
|
interProceduralOptimizations: false, // -ipo
|
2015-12-05 22:40:30 +03:00
|
|
|
|
|
|
|
noBuiltIn: true,
|
|
|
|
|
|
|
|
intelExtensions: false,
|
|
|
|
asmBlocks: true,
|
|
|
|
|
|
|
|
positionIndependentCode: false
|
|
|
|
),
|
|
|
|
linkerOptions: new GccToolchainConfig.LinkerOptions(
|
2016-01-12 16:52:42 +03:00
|
|
|
interProceduralOptimizations: false, // -ipo
|
2015-12-05 22:40:30 +03:00
|
|
|
stripSymbolTable: true,
|
|
|
|
staticLibGcc: true,
|
|
|
|
staticIntel: true,
|
|
|
|
),
|
|
|
|
librarianOptions: new GccToolchainConfig.LibrarianOptions(
|
|
|
|
)
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
//debug
|
|
|
|
cfg = new GccToolchainConfig(
|
|
|
|
compilerOptions: new GccToolchainConfig.CompilerOptions(
|
|
|
|
optimizationLevel: OptimizationLevel.DISABLE,
|
|
|
|
stackProtector: true,
|
|
|
|
interProceduralOptimizations: false,
|
|
|
|
|
|
|
|
noBuiltIn: true,
|
|
|
|
intelExtensions: false,
|
|
|
|
asmBlocks: true,
|
|
|
|
|
|
|
|
extraDefines: [
|
|
|
|
'_ITERATOR_DEBUG_LEVEL': 0, // for std::list, disable debug iterator in debug mode
|
|
|
|
]
|
|
|
|
),
|
|
|
|
linkerOptions: new GccToolchainConfig.LinkerOptions(
|
|
|
|
interProceduralOptimizations: false,
|
|
|
|
stripSymbolTable: false,
|
|
|
|
staticLibGcc: true,
|
|
|
|
staticIntel: true,
|
|
|
|
),
|
|
|
|
librarianOptions: new GccToolchainConfig.LibrarianOptions(
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return cfg
|
2015-06-30 12:46:07 +03:00
|
|
|
}
|