diff options
author | rillig <rillig@pkgsrc.org> | 2020-01-25 20:20:45 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2020-01-25 20:20:45 +0000 |
commit | 03f840e213c5c0c7725098659be6c68598ad44d9 (patch) | |
tree | 1f28aa71b7ee674568226e570984344a2e646449 | |
parent | ccbe4771473bef6a48269840fa4de77d06b690cc (diff) | |
download | pkgsrc-03f840e213c5c0c7725098659be6c68598ad44d9.tar.gz |
lang/gcc9: broken on Linux-*-x86_64
-rw-r--r-- | lang/gcc9/Makefile | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/lang/gcc9/Makefile b/lang/gcc9/Makefile index e4732ad1440..c4821c329ea 100644 --- a/lang/gcc9/Makefile +++ b/lang/gcc9/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2020/01/18 22:41:30 rillig Exp $ +# $NetBSD: Makefile,v 1.6 2020/01/25 20:20:45 rillig Exp $ GCC9_VERSION= 9.2.0 @@ -47,6 +47,19 @@ CHECK_PORTABILITY_SKIP= contrib/download_prerequisites .include "../../mk/bsd.prefs.mk" +# Linux/el7/trunk/x86_64/20200123.2242/gcc9-9.2.0nb1/build.log +# ... +# cc -c -DHAVE_CONFIG_H -g -I/usr/include -I/usr/pkg/include \ +# -I/usr/pkg/include/python3.7 -I. \ +# -I../../gcc-9.2.0/libiberty/../include -W -Wall -Wwrite-strings \ +# -Wc++-compat -Wstrict-prototypes -pedantic \ +# -D_GNU_SOURCE ../../gcc-9.2.0/libiberty/argv.c -o argv.o +# ... +# compute_powtab.c: In function 'mpn_compute_powtab_mul': +# compute_powtab.c:142:3: error: 'for' loop initial declarations are only allowed in C99 mode +# for (long pi = start_idx; pi >= 0; pi--) +NOT_FOR_PLATFORM+= Linux-*-x86_64 + LANGS= c # In some cases LINKER_RPATH_FLAG needs a trailing space. |