summary refs log tree commit diff
path: root/pkgs/development/libraries/glibc/common.nix
diff options
context:
space:
mode:
authorRyan Burns <rtburns@protonmail.com>2021-11-20 17:50:41 -0800
committerRyan Burns <rtburns@protonmail.com>2021-11-20 17:50:41 -0800
commit2175b157acf1fd338021bc162ec7c4d6d7f90306 (patch)
tree42240c01e72f022fd6d3bb2664960745e9ff757a /pkgs/development/libraries/glibc/common.nix
parent6aded65e28c8805bfb81e6b5fc1613633480eb16 (diff)
downloadnixpkgs-2175b157acf1fd338021bc162ec7c4d6d7f90306.tar
nixpkgs-2175b157acf1fd338021bc162ec7c4d6d7f90306.tar.gz
nixpkgs-2175b157acf1fd338021bc162ec7c4d6d7f90306.tar.bz2
nixpkgs-2175b157acf1fd338021bc162ec7c4d6d7f90306.tar.lz
nixpkgs-2175b157acf1fd338021bc162ec7c4d6d7f90306.tar.xz
nixpkgs-2175b157acf1fd338021bc162ec7c4d6d7f90306.tar.zst
nixpkgs-2175b157acf1fd338021bc162ec7c4d6d7f90306.zip
treewide: refactor isi686 && isx86_64 -> isx86
Diffstat (limited to 'pkgs/development/libraries/glibc/common.nix')
-rw-r--r--pkgs/development/libraries/glibc/common.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/glibc/common.nix b/pkgs/development/libraries/glibc/common.nix
index 91281f9cd24..57c2e259e06 100644
--- a/pkgs/development/libraries/glibc/common.nix
+++ b/pkgs/development/libraries/glibc/common.nix
@@ -161,7 +161,7 @@ stdenv.mkDerivation ({
       "--enable-bind-now"
       (lib.withFeatureAs withLinuxHeaders "headers" "${linuxHeaders}/include")
       (lib.enableFeature profilingLibraries "profile")
-    ] ++ lib.optionals (stdenv.hostPlatform.isx86_64 || stdenv.hostPlatform.isi686 || stdenv.hostPlatform.isAarch64) [
+    ] ++ lib.optionals (stdenv.hostPlatform.isx86 || stdenv.hostPlatform.isAarch64) [
       # This feature is currently supported on
       # i386, x86_64 and x32 with binutils 2.29 or later,
       # and on aarch64 with binutils 2.30 or later.