Merge pull request #227383 from kangaroo/riscv
isl: Fix isl 0.20 on riscv due to out of date config.guess
This commit is contained in:
commit
853ab9b4bd
@ -5,7 +5,7 @@
|
||||
, patches ? []
|
||||
}:
|
||||
|
||||
{ lib, stdenv, fetchurl, gmp
|
||||
{ lib, stdenv, fetchurl, gmp, autoreconfHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
@ -19,6 +19,7 @@ stdenv.mkDerivation {
|
||||
inherit patches;
|
||||
|
||||
strictDeps = true;
|
||||
nativeBuildInputs = lib.optionals (stdenv.hostPlatform.isRiscV && lib.versionOlder version "0.24") [ autoreconfHook ];
|
||||
buildInputs = [ gmp ];
|
||||
|
||||
inherit configureFlags;
|
||||
|
Loading…
Reference in New Issue
Block a user