vte: restrict condition for using clangStdenv
This commit is contained in:
parent
b73601f559
commit
70335751e4
1 changed files with 1 additions and 1 deletions
|
@ -23728,7 +23728,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 a new issue