2
0
mirror of https://github.com/rehlds/rehlds.git synced 2025-01-01 01:25:38 +03:00

Merge pull request #354 from dreamstalker/fixes20170214

Remove static link option for gcc lib too.
This commit is contained in:
Lev 2017-02-14 22:00:22 +05:00 committed by GitHub
commit e2e4e90abe
2 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ rootProject.ext.createGccConfig = { boolean release, BinaryKind binKind ->
linkerOptions: new GccToolchainConfig.LinkerOptions(
//interProceduralOptimizations: true,
stripSymbolTable: true,
staticLibGcc: true,
staticLibGcc: false,
//staticIntel: true,
staticLibStdCpp: false,
),
@ -47,7 +47,7 @@ rootProject.ext.createGccConfig = { boolean release, BinaryKind binKind ->
linkerOptions: new GccToolchainConfig.LinkerOptions(
//interProceduralOptimizations: false,
stripSymbolTable: false,
staticLibGcc: true,
staticLibGcc: false,
//staticIntel: true,
staticLibStdCpp: false,
),

View File

@ -22,7 +22,7 @@ rootProject.ext.createIccConfig = { boolean release, BinaryKind binKind ->
linkerOptions: new GccToolchainConfig.LinkerOptions(
interProceduralOptimizations: true,
stripSymbolTable: true,
staticLibGcc: true,
staticLibGcc: false,
staticIntel: true,
staticLibStdCpp: false,
),
@ -47,7 +47,7 @@ rootProject.ext.createIccConfig = { boolean release, BinaryKind binKind ->
linkerOptions: new GccToolchainConfig.LinkerOptions(
interProceduralOptimizations: false,
stripSymbolTable: false,
staticLibGcc: true,
staticLibGcc: false,
staticIntel: true,
staticLibStdCpp: false,
),