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