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:
commit
e2e4e90abe
@ -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,
|
||||
),
|
||||
|
@ -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,
|
||||
),
|
||||
|
Loading…
Reference in New Issue
Block a user