summary refs log tree commit diff
path: root/pkgs/development/compilers/gcc/6
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-08-24 01:16:02 +0300
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-08-24 01:17:01 +0300
commit0c0fad6141cf3d620ae17d69431a0d152c9fd73e (patch)
treed6c0db74aa9b58ced0b594459ce496fcffce35b4 /pkgs/development/compilers/gcc/6
parent46930ef3e64ce0b717e1ce25a39edf71095e479f (diff)
downloadnixlib-0c0fad6141cf3d620ae17d69431a0d152c9fd73e.tar
nixlib-0c0fad6141cf3d620ae17d69431a0d152c9fd73e.tar.gz
nixlib-0c0fad6141cf3d620ae17d69431a0d152c9fd73e.tar.bz2
nixlib-0c0fad6141cf3d620ae17d69431a0d152c9fd73e.tar.lz
nixlib-0c0fad6141cf3d620ae17d69431a0d152c9fd73e.tar.xz
nixlib-0c0fad6141cf3d620ae17d69431a0d152c9fd73e.tar.zst
nixlib-0c0fad6141cf3d620ae17d69431a0d152c9fd73e.zip
treewide: Consistently call ARM 'arm'
No need for silly differences.
Diffstat (limited to 'pkgs/development/compilers/gcc/6')
-rw-r--r--pkgs/development/compilers/gcc/6/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/gcc/6/default.nix b/pkgs/development/compilers/gcc/6/default.nix
index bc408e28f589..25940420e9a9 100644
--- a/pkgs/development/compilers/gcc/6/default.nix
+++ b/pkgs/development/compilers/gcc/6/default.nix
@@ -328,7 +328,7 @@ stdenv.mkDerivation ({
   # TODO(@Ericson2314): Always pass "--target" and always prefix.
   configurePlatforms =
     # TODO(@Ericson2314): Figure out what's going wrong with Arm
-    if hostPlatform == targetPlatform && targetPlatform.isArm32
+    if hostPlatform == targetPlatform && targetPlatform.isArm
     then []
     else [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";