Merge pull request #88988 from tobim/optimize-cross-libstdc++
gcc: optimize cross-compiled libraries
This commit is contained in:
commit
7e571eb994
|
@ -5,9 +5,12 @@ let
|
||||||
in
|
in
|
||||||
|
|
||||||
{
|
{
|
||||||
|
# For non-cross builds these flags are currently assigned in builder.sh.
|
||||||
|
# It would be good to consolidate the generation of makeFlags
|
||||||
|
# ({C,CXX,LD}FLAGS_FOR_{BUILD,TARGET}, etc...) at some point.
|
||||||
EXTRA_TARGET_FLAGS = let
|
EXTRA_TARGET_FLAGS = let
|
||||||
mkFlags = dep: langD: lib.optionals (targetPlatform != hostPlatform && dep != null && !langD) ([
|
mkFlags = dep: langD: lib.optionals (targetPlatform != hostPlatform && dep != null && !langD) ([
|
||||||
"-idirafter ${lib.getDev dep}${dep.incdir or "/include"}"
|
"-O2 -idirafter ${lib.getDev dep}${dep.incdir or "/include"}"
|
||||||
] ++ stdenv.lib.optionals (! crossStageStatic) [
|
] ++ stdenv.lib.optionals (! crossStageStatic) [
|
||||||
"-B${lib.getLib dep}${dep.libdir or "/lib"}"
|
"-B${lib.getLib dep}${dep.libdir or "/lib"}"
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Reference in New Issue