2
0
mirror of https://github.com/rehlds/rehlds.git synced 2025-01-03 18:45:46 +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( linkerOptions: new GccToolchainConfig.LinkerOptions(
//interProceduralOptimizations: true, //interProceduralOptimizations: true,
stripSymbolTable: true, stripSymbolTable: true,
staticLibGcc: true, staticLibGcc: false,
//staticIntel: true, //staticIntel: true,
staticLibStdCpp: false, staticLibStdCpp: false,
), ),
@ -47,7 +47,7 @@ rootProject.ext.createGccConfig = { boolean release, BinaryKind binKind ->
linkerOptions: new GccToolchainConfig.LinkerOptions( linkerOptions: new GccToolchainConfig.LinkerOptions(
//interProceduralOptimizations: false, //interProceduralOptimizations: false,
stripSymbolTable: false, stripSymbolTable: false,
staticLibGcc: true, staticLibGcc: false,
//staticIntel: true, //staticIntel: true,
staticLibStdCpp: false, staticLibStdCpp: false,
), ),

View File

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