Merge pull request #73184 from Ericson2314/gcc-fix-cross-whoops

gcc: Fix cross after I accidentally changed build target
This commit is contained in:
John Ericson
2019-11-10 17:49:48 -05:00
committed by GitHub
8 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -191,7 +191,7 @@ stdenv.mkDerivation ({
targetConfig = if targetPlatform != hostPlatform then targetPlatform.config else null;
buildFlags = optional
(hostPlatform == buildPlatform)
(targetPlatform == hostPlatform && hostPlatform == buildPlatform)
(if profiledCompiler then "profiledbootstrap" else "bootstrap");
dontStrip = !stripped;