mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
Merge pull request #218700 from wegank/vte-gcc12
vte: restrict condition for using clangStdenv
This commit is contained in:
commit
916f626e42
@ -23768,7 +23768,7 @@ with pkgs;
|
|||||||
vte = callPackage ../development/libraries/vte {
|
vte = callPackage ../development/libraries/vte {
|
||||||
# Needs GCC ≥10 but aarch64 defaults to GCC 9.
|
# Needs GCC ≥10 but aarch64 defaults to GCC 9.
|
||||||
stdenv =
|
stdenv =
|
||||||
if stdenv.isLinux && stdenv.isAarch64 && stdenv.cc.isGNU
|
if stdenv.isLinux && stdenv.isAarch64 && stdenv.cc.isGNU && lib.versionOlder stdenv.cc.version "10"
|
||||||
then clangStdenv
|
then clangStdenv
|
||||||
else stdenv;
|
else stdenv;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user