gcc: Fix cross after I accidentally changed build target
I deleted "bootstrap", but forgot to make the condition build = host = target.
This commit is contained in:
@@ -183,7 +183,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;
|
||||
|
||||
Reference in New Issue
Block a user