2019-06-23 20:40:02 +03:00
|
|
|
import org.doomedsociety.gradlecpp.cfg.BinaryKind
|
|
|
|
import org.doomedsociety.gradlecpp.gcc.GccToolchainConfig
|
|
|
|
import org.doomedsociety.gradlecpp.gcc.OptimizationLevel
|
|
|
|
|
|
|
|
rootProject.ext.createGccConfig = { boolean release, BinaryKind binKind ->
|
|
|
|
GccToolchainConfig cfg
|
|
|
|
if (release) {
|
|
|
|
cfg = new GccToolchainConfig(
|
|
|
|
compilerOptions: new GccToolchainConfig.CompilerOptions(
|
|
|
|
optimizationLevel: OptimizationLevel.LEVEL_3,
|
|
|
|
stackProtector: false,
|
|
|
|
noBuiltIn: true,
|
|
|
|
positionIndependentCode: false,
|
|
|
|
|
|
|
|
extraDefines: [
|
|
|
|
'linux': null,
|
|
|
|
'__linux__': null,
|
|
|
|
'NDEBUG': null,
|
|
|
|
],
|
|
|
|
),
|
|
|
|
|
|
|
|
linkerOptions: new GccToolchainConfig.LinkerOptions(
|
2020-12-16 14:48:33 +03:00
|
|
|
stripSymbolTable: true,
|
2019-06-23 20:40:02 +03:00
|
|
|
staticLibGcc: false,
|
2019-07-28 23:43:06 +03:00
|
|
|
staticLibStdCpp: true,
|
2019-06-23 20:40:02 +03:00
|
|
|
),
|
|
|
|
|
|
|
|
librarianOptions: new GccToolchainConfig.LibrarianOptions(
|
|
|
|
|
|
|
|
)
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
// debug
|
|
|
|
cfg = new GccToolchainConfig(
|
|
|
|
compilerOptions: new GccToolchainConfig.CompilerOptions(
|
|
|
|
optimizationLevel: OptimizationLevel.DISABLE,
|
|
|
|
stackProtector: true,
|
|
|
|
noBuiltIn: true,
|
|
|
|
|
|
|
|
extraDefines: [
|
|
|
|
'linux': null,
|
|
|
|
'__linux__': null,
|
|
|
|
'NDEBUG': null,
|
|
|
|
],
|
|
|
|
),
|
|
|
|
|
|
|
|
linkerOptions: new GccToolchainConfig.LinkerOptions(
|
|
|
|
stripSymbolTable: false,
|
|
|
|
staticLibGcc: false,
|
2019-07-28 23:43:06 +03:00
|
|
|
staticLibStdCpp: true,
|
2019-06-23 20:40:02 +03:00
|
|
|
),
|
|
|
|
|
|
|
|
librarianOptions: new GccToolchainConfig.LibrarianOptions(
|
|
|
|
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
cfg.singleDefines('LINUX', '_LINUX')
|
|
|
|
return cfg
|
|
|
|
}
|