pkgsLLVM: Fix unwanted target offset (#363852)

This commit is contained in:
Tristan Ross
2024-12-15 08:40:48 -08:00
committed by GitHub
+1 -1
View File
@@ -201,7 +201,7 @@ let
# Bootstrap a cross stdenv using the LLVM toolchain.
# This is currently not possible when compiling natively,
# so we don't need to check hostPlatform != buildPlatform.
crossSystem = stdenv.targetPlatform // {
crossSystem = stdenv.hostPlatform // {
useLLVM = true;
linker = "lld";
};