summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@yahoo.com>2018-05-14 11:20:09 -0400
committerGitHub <noreply@github.com>2018-05-14 11:20:09 -0400
commitd00cc1242fa3c38b5293e46e14d8dfd1d9a91036 (patch)
treeb374beab386c69cabeda4f5b609c1d60dd1d1bd3 /pkgs/development/tools/misc
parent8e891e6ed47c6cffd9ebab6cce0835cb5f0a9b25 (diff)
parentf2b575bd7b4362ba2f1334fc8daebc2e9d9f78dd (diff)
downloadnixpkgs-d00cc1242fa3c38b5293e46e14d8dfd1d9a91036.tar
nixpkgs-d00cc1242fa3c38b5293e46e14d8dfd1d9a91036.tar.gz
nixpkgs-d00cc1242fa3c38b5293e46e14d8dfd1d9a91036.tar.bz2
nixpkgs-d00cc1242fa3c38b5293e46e14d8dfd1d9a91036.tar.lz
nixpkgs-d00cc1242fa3c38b5293e46e14d8dfd1d9a91036.tar.xz
nixpkgs-d00cc1242fa3c38b5293e46e14d8dfd1d9a91036.tar.zst
nixpkgs-d00cc1242fa3c38b5293e46e14d8dfd1d9a91036.zip
Merge pull request #40040 from obsidiansystems/gnu-config-arm
gnu-config: Update, allowing hacks to be removed
Diffstat (limited to 'pkgs/development/tools/misc')
-rw-r--r--pkgs/development/tools/misc/binutils/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/development/tools/misc/binutils/default.nix b/pkgs/development/tools/misc/binutils/default.nix
index 77622f579f3..cb76eeaed7e 100644
--- a/pkgs/development/tools/misc/binutils/default.nix
+++ b/pkgs/development/tools/misc/binutils/default.nix
@@ -104,11 +104,7 @@ stdenv.mkDerivation rec {
     else "-static-libgcc";
 
   # TODO(@Ericson2314): Always pass "--target" and always targetPrefix.
-  configurePlatforms =
-    # TODO(@Ericson2314): Figure out what's going wrong with Arm
-    if buildPlatform == hostPlatform && hostPlatform == targetPlatform && targetPlatform.isAarch32
-    then []
-    else [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
+  configurePlatforms = [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
 
   configureFlags = [
     "--enable-targets=all" "--enable-64-bit-bfd"