From 3de8f94d5cc92e64e9bf33302ede60e09d5a8b67 Mon Sep 17 00:00:00 2001 From: kevlo Date: Tue, 9 Nov 2021 02:48:00 +0000 Subject: [PATCH] Adding --without-isl to the configure options, so that build doesn't fail for porters who have math/isl installed. Build failure noticed by naddy@, input from bcallah@ and tracey@ ok tracey@ --- devel/riscv-elf/gcc/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/devel/riscv-elf/gcc/Makefile b/devel/riscv-elf/gcc/Makefile index 46c525d00a5..2f0780c52c1 100644 --- a/devel/riscv-elf/gcc/Makefile +++ b/devel/riscv-elf/gcc/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.5 2021/01/09 21:41:16 jasper Exp $ +# $OpenBSD: Makefile,v 1.6 2021/11/09 02:48:00 kevlo Exp $ COMMENT= gcc for riscv-elf cross-development VERSION= 8.1.0 DISTNAME= gcc-${VERSION} PKGNAME= riscv-elf-gcc-${VERSION} -REVISION= 2 +REVISION= 3 SUBST_VARS+= VERSION @@ -36,7 +36,8 @@ CONFIGURE_ARGS+=--enable-languages=${LANGS} \ --with-newlib \ --disable-libcc1 \ --disable-lto \ - --enable-cpp + --enable-cpp \ + --without-isl CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib"