Merge pull request #28374 from obsidiansystems/binutils-arm

binutils: Pass --build --host on non-arm

Changed files
+6 -1
pkgs
development
tools
misc
binutils
+6 -1
pkgs/development/tools/misc/binutils/default.nix
···
else "-static-libgcc";
# TODO(@Ericson2314): Always pass "--target" and always prefix.
-
configurePlatforms = stdenv.lib.optionals (targetPlatform != hostPlatform) [ "build" "host" "target" ];
+
configurePlatforms =
+
# TODO(@Ericson2314): Figure out what's going wrong with Arm
+
if hostPlatform == targetPlatform && targetPlatform.isArm32
+
then []
+
else [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
+
configureFlags =
[ "--enable-shared" "--enable-deterministic-archives" "--disable-werror" ]
++ optional (stdenv.system == "mips64el-linux") "--enable-fix-loongson2f-nop"