| Cost | $10.254 |
| Total elapsed time | 6m42s |
| LLM inference time | 6m11s |
| Command execution time | 32s |
| Commands executed | 77 |
All details >
| Attempt ID | 3302vghtf15lc | Attempt group | run-17-09-01-01 |
| Revision | fb5c74bd2fee | AWS Instance | m8i.2xlarge |
| Start time | 2025-09-17T01:02:08.116Z | End time | 2025-09-17T01:08:50.727Z |
| Task | coreutils-old-version-alpine | Environment | alpine-3.22.1-amd64-offline |
| Model | | OpenRouter slug | qwen/qwen3-max |
| Temperature | 1 | Explicit prompt caching | false |
| User msg after tool call | false | Max tool calls | 200 |
| Total timeout seconds | 2400 | Single command timeout | 900 |
| Cost | $10.254 | Duration | 6m42s |
| LLM inference time | 6m11s | Command execution time | 32s |
| Final context tokens | 153,993 | Total output tokens | 5,142 |
| Output reasoning tokens | 0 | Messages | 156 |
| Assistant messages | 77 | User messages | 1 |
| System messages | 1 | Commands executed | 77 |
GNU coreutils 5.0 (from 2003) is a collection of Linux utilities like ls, cp, mv, etc.
Project link: gnu.org/software/coreutils
Task:
Compile and install all coreutils utilities to a specific location.
Difficulties:
The source is very old (2003) and requires heavy patching. On Alpine Linux (with musl) the code requires even more patching.
Environment:
Alpine Linux 3.22.1 on amd64, without internet access.
You are a package-building specialist operating a Alpine Linux 3.22.1 bash shell via one tool: run_terminal_cmd.
The current working directory of every run_terminal_cmd is /home/peter.
Execution rules:
- Always pass non-interactive flags for any command that could prompt (e.g., -y, --yes).
- Don't include any newlines in the command.
- The environment is offline, assume you have all the necessary tools already installed.
If you encounter any errors or issues while doing the user's request, you must fix them and continue the task.
At the end verify you did the user request correctly.
You are given a coreutils v5.0 source code at /home/peter/coreutils.tar.gz. Please compile the coreutils package and install it to /home/peter/result. Create symlinks for all coreutils utilities so they are available under /home/peter/result/
[empty output]
compile-bench> cd coreutils-5.0 && ./configure --prefix=/home/peter/result checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking for perl5.003 or newer... no
configure: WARNING:
WARNING: You don't seem to have perl5.003 or newer installed, or you lack
a usable version of the Perl File::Compare module. As a result,
you may be unable to run a few tests or to regenerate certain
files if you modify the sources from which they are derived.
checking for gcc... gcc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking whether gcc needs -traditional... no
checking for ranlib... ranlib
checking whether ln -s works... yes
checking for AIX... no
checking for ANSI C header files... no
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking for uname... yes
checking for chroot... yes
checking for gethostid... yes
checking for strerror in -lcposix... no
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for _LARGE_FILES value needed for large files... no
checking for gcc option to accept ANSI C... none needed
checking for function prototypes... yes
checking for ANSI C header files... (cached) no
checking for string.h... (cached) yes
checking whether byte ordering is bigendian... no
checking for an ANSI C-conforming const... yes
checking for working volatile... yes
checking for inline... inline
checking for working long double with more range or precision than double... no
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking float.h usability... yes
checking float.h presence... yes
[command output truncated]
checking for getspnam... yes
checking for library containing crypt... none required
checking for msgfmt... no
checking for gmsgfmt... :
checking for xgettext... no
checking for msgmerge... no
checking whether NLS is requested... yes
checking for GNU gettext in libc... no
checking for iconv... (cached) yes
checking for GNU gettext in libintl... no
configure: creating ./config.status
config.status: creating Makefile
config.status: creating doc/Makefile
config.status: creating lib/Makefile
config.status: creating man/Makefile
config.status: creating m4/Makefile
config.status: creating po/Makefile.in
config.status: creating src/Makefile
config.status: creating tests/Makefile
config.status: creating tests/basename/Makefile
config.status: creating tests/chgrp/Makefile
config.status: creating tests/chmod/Makefile
config.status: creating tests/chown/Makefile
config.status: creating tests/cp/Makefile
config.status: creating tests/cut/Makefile
config.status: creating tests/date/Makefile
config.status: creating tests/dd/Makefile
config.status: creating tests/dircolors/Makefile
config.status: creating tests/du/Makefile
config.status: creating tests/expr/Makefile
config.status: creating tests/factor/Makefile
config.status: creating tests/fmt/Makefile
config.status: creating tests/head/Makefile
config.status: creating tests/install/Makefile
config.status: creating tests/join/Makefile
config.status: creating tests/ln/Makefile
config.status: creating tests/ls-2/Makefile
config.status: creating tests/ls/Makefile
config.status: creating tests/md5sum/Makefile
config.status: creating tests/misc/Makefile
config.status: creating tests/mkdir/Makefile
config.status: creating tests/mv/Makefile
config.status: creating tests/od/Makefile
config.status: creating tests/pr/Makefile
config.status: creating tests/rm/Makefile
config.status: creating tests/rmdir/Makefile
config.status: creating tests/seq/Makefile
config.status: creating tests/sha1sum/Makefile
config.status: creating tests/shred/Makefile
config.status: creating tests/sort/Makefile
config.status: creating tests/stty/Makefile
config.status: creating tests/sum/Makefile
config.status: creating tests/tac/Makefile
config.status: creating tests/tail-2/Makefile
config.status: creating tests/tail/Makefile
config.status: creating tests/test/Makefile
config.status: creating tests/touch/Makefile
config.status: creating tests/tr/Makefile
config.status: creating tests/tsort/Makefile
config.status: creating tests/unexpand/Makefile
config.status: creating tests/uniq/Makefile
config.status: creating tests/wc/Makefile
config.status: creating config.h
config.status: linking ./lib/fnmatch_.h to lib/fnmatch.h
config.status: linking ./lib/ftw_.h to lib/ftw.h
config.status: executing depfiles commands
config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
↓ 141 lines
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking for perl5.003 or newer... no
configure: WARNING:
WARNING: You don't seem to have perl5.003 or newer installed, or you lack
a usable version of the Perl File::Compare module. As a result,
you may be unable to run a few tests or to regenerate certain
files if you modify the sources from which they are derived.
checking for gcc... gcc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking whether gcc needs -traditional... no
checking for ranlib... ranlib
checking whether ln -s works... yes
checking for AIX... no
checking for ANSI C header files... no
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking for uname... yes
checking for chroot... yes
checking for gethostid... yes
checking for strerror in -lcposix... no
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for _LARGE_FILES value needed for large files... no
checking for gcc option to accept ANSI C... none needed
checking for function prototypes... yes
checking for ANSI C header files... (cached) no
checking for string.h... (cached) yes
checking whether byte ordering is bigendian... no
checking for an ANSI C-conforming const... yes
checking for working volatile... yes
checking for inline... inline
checking for working long double with more range or precision than double... no
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking float.h usability... yes
checking float.h presence... yes
[command output truncated]
checking for getspnam... yes
checking for library containing crypt... none required
checking for msgfmt... no
checking for gmsgfmt... :
checking for xgettext... no
checking for msgmerge... no
checking whether NLS is requested... yes
checking for GNU gettext in libc... no
checking for iconv... (cached) yes
checking for GNU gettext in libintl... no
configure: creating ./config.status
config.status: creating Makefile
config.status: creating doc/Makefile
config.status: creating lib/Makefile
config.status: creating man/Makefile
config.status: creating m4/Makefile
config.status: creating po/Makefile.in
config.status: creating src/Makefile
config.status: creating tests/Makefile
config.status: creating tests/basename/Makefile
config.status: creating tests/chgrp/Makefile
config.status: creating tests/chmod/Makefile
config.status: creating tests/chown/Makefile
config.status: creating tests/cp/Makefile
config.status: creating tests/cut/Makefile
config.status: creating tests/date/Makefile
config.status: creating tests/dd/Makefile
config.status: creating tests/dircolors/Makefile
config.status: creating tests/du/Makefile
config.status: creating tests/expr/Makefile
config.status: creating tests/factor/Makefile
config.status: creating tests/fmt/Makefile
config.status: creating tests/head/Makefile
config.status: creating tests/install/Makefile
config.status: creating tests/join/Makefile
config.status: creating tests/ln/Makefile
config.status: creating tests/ls-2/Makefile
config.status: creating tests/ls/Makefile
config.status: creating tests/md5sum/Makefile
config.status: creating tests/misc/Makefile
config.status: creating tests/mkdir/Makefile
config.status: creating tests/mv/Makefile
config.status: creating tests/od/Makefile
config.status: creating tests/pr/Makefile
config.status: creating tests/rm/Makefile
config.status: creating tests/rmdir/Makefile
config.status: creating tests/seq/Makefile
config.status: creating tests/sha1sum/Makefile
config.status: creating tests/shred/Makefile
config.status: creating tests/sort/Makefile
config.status: creating tests/stty/Makefile
config.status: creating tests/sum/Makefile
config.status: creating tests/tac/Makefile
config.status: creating tests/tail-2/Makefile
config.status: creating tests/tail/Makefile
config.status: creating tests/test/Makefile
config.status: creating tests/touch/Makefile
config.status: creating tests/tr/Makefile
config.status: creating tests/tsort/Makefile
config.status: creating tests/unexpand/Makefile
config.status: creating tests/uniq/Makefile
config.status: creating tests/wc/Makefile
config.status: creating config.h
config.status: linking ./lib/fnmatch_.h to lib/fnmatch.h
config.status: linking ./lib/ftw_.h to lib/ftw.h
config.status: executing depfiles commands
config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
compile-bench> cd coreutils-5.0 && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT acl.o -MD -MP -MF ".deps/acl.Tpo" \
-c -o acl.o `test -f 'acl.c' || echo './'`acl.c; \
then mv ".deps/acl.Tpo" ".deps/acl.Po"; \
else rm -f ".deps/acl.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getdate.o -MD -MP -MF ".deps/getdate.Tpo" \
-c -o getdate.o `test -f 'getdate.c' || echo './'`getdate.c; \
then mv ".deps/getdate.Tpo" ".deps/getdate.Po"; \
else rm -f ".deps/getdate.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixtm.o -MD -MP -MF ".deps/posixtm.Tpo" \
-c -o posixtm.o `test -f 'posixtm.c' || echo './'`posixtm.c; \
then mv ".deps/posixtm.Tpo" ".deps/posixtm.Po"; \
else rm -f ".deps/posixtm.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixver.o -MD -MP -MF ".deps/posixver.Tpo" \
-c -o posixver.o `test -f 'posixver.c' || echo './'`posixver.c; \
then mv ".deps/posixver.Tpo" ".deps/posixver.Po"; \
else rm -f ".deps/posixver.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT strftime.o -MD -MP -MF ".deps/strftime.Tpo" \
-c -o strftime.o `test -f 'strftime.c' || echo './'`strftime.c; \
then mv ".deps/strftime.Tpo" ".deps/strftime.Po"; \
else rm -f ".deps/strftime.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt.o -MD -MP -MF ".deps/getopt.Tpo" \
-c -o getopt.o `test -f 'getopt.c' || echo './'`getopt.c; \
then mv ".deps/getopt.Tpo" ".deps/getopt.Po"; \
else rm -f ".deps/getopt.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt1.o -MD -MP -MF ".deps/getopt1.Tpo" \
-c -o getopt1.o `test -f 'getopt1.c' || echo './'`getopt1.c; \
then mv ".deps/getopt1.Tpo" ".deps/getopt1.Po"; \
else rm -f ".deps/getopt1.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT hash.o -MD -MP -MF ".deps/hash.Tpo" \
-c -o hash.o `test -f 'hash.c' || echo './'`hash.c; \
then mv ".deps/hash.Tpo" ".deps/hash.Po"; \
else rm -f ".deps/hash.Tpo"; exit 1; \
fi
In file included from acl.c:22:
../config.h:1359:15: error: duplicate 'unsigned'
1359 | #define ino_t unsigned long
| ^~~~~~~~
In file included from strftime.c:22:
../config.h:1359:15: error: duplicate 'unsigned'
1359 | #define ino_t unsigned long
| ^~~~~~~~
make[3]: *** [Makefile:590: acl.o] Error 1
make[3]: *** Waiting for unfinished jobs....
In file included from posixtm.c:22:
../config.h:1359:15: error: duplicate 'unsigned'
1359 | #define ino_t unsigned long
| ^~~~~~~~
In file included from /usr/include/fortify/stdlib.h:33,
from posixver.c:28:
/usr/include/fortify/unistd.h:75:1: error: 'getgroups' undeclared here (not in a function); did you mean 'setgroups'?
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
In file included from posixver.c:34:
/usr/include/fortify/unistd.h: In function 'getgroups':
/usr/include/fortify/unistd.h:81:16: error: called object '__orig_getgroups' is not a function or function pointer
81 | return __orig_getgroups(__l, __s);
| ^~~~~~~~~~~~~~~~
/usr/include/fortify/unistd.h:75:1: note: declared here
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: posixver.o] Error 1
In file included from getdate.h:18,
from getdate.y:449:
../config.h:1359:15: error: duplicate 'unsigned'
1359 | #define ino_t unsigned long
| ^~~~~~~~
make[3]: *** [Makefile:590: posixtm.o] Error 1
make[3]: *** [Makefile:590: strftime.o] Error 1
make[3]: *** [Makefile:590: getdate.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 89 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT acl.o -MD -MP -MF ".deps/acl.Tpo" \
-c -o acl.o `test -f 'acl.c' || echo './'`acl.c; \
then mv ".deps/acl.Tpo" ".deps/acl.Po"; \
else rm -f ".deps/acl.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getdate.o -MD -MP -MF ".deps/getdate.Tpo" \
-c -o getdate.o `test -f 'getdate.c' || echo './'`getdate.c; \
then mv ".deps/getdate.Tpo" ".deps/getdate.Po"; \
else rm -f ".deps/getdate.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixtm.o -MD -MP -MF ".deps/posixtm.Tpo" \
-c -o posixtm.o `test -f 'posixtm.c' || echo './'`posixtm.c; \
then mv ".deps/posixtm.Tpo" ".deps/posixtm.Po"; \
else rm -f ".deps/posixtm.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixver.o -MD -MP -MF ".deps/posixver.Tpo" \
-c -o posixver.o `test -f 'posixver.c' || echo './'`posixver.c; \
then mv ".deps/posixver.Tpo" ".deps/posixver.Po"; \
else rm -f ".deps/posixver.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT strftime.o -MD -MP -MF ".deps/strftime.Tpo" \
-c -o strftime.o `test -f 'strftime.c' || echo './'`strftime.c; \
then mv ".deps/strftime.Tpo" ".deps/strftime.Po"; \
else rm -f ".deps/strftime.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt.o -MD -MP -MF ".deps/getopt.Tpo" \
-c -o getopt.o `test -f 'getopt.c' || echo './'`getopt.c; \
then mv ".deps/getopt.Tpo" ".deps/getopt.Po"; \
else rm -f ".deps/getopt.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt1.o -MD -MP -MF ".deps/getopt1.Tpo" \
-c -o getopt1.o `test -f 'getopt1.c' || echo './'`getopt1.c; \
then mv ".deps/getopt1.Tpo" ".deps/getopt1.Po"; \
else rm -f ".deps/getopt1.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT hash.o -MD -MP -MF ".deps/hash.Tpo" \
-c -o hash.o `test -f 'hash.c' || echo './'`hash.c; \
then mv ".deps/hash.Tpo" ".deps/hash.Po"; \
else rm -f ".deps/hash.Tpo"; exit 1; \
fi
In file included from acl.c:22:
../config.h:1359:15: error: duplicate 'unsigned'
1359 | #define ino_t unsigned long
| ^~~~~~~~
In file included from strftime.c:22:
../config.h:1359:15: error: duplicate 'unsigned'
1359 | #define ino_t unsigned long
| ^~~~~~~~
make[3]: *** [Makefile:590: acl.o] Error 1
make[3]: *** Waiting for unfinished jobs....
In file included from posixtm.c:22:
../config.h:1359:15: error: duplicate 'unsigned'
1359 | #define ino_t unsigned long
| ^~~~~~~~
In file included from /usr/include/fortify/stdlib.h:33,
from posixver.c:28:
/usr/include/fortify/unistd.h:75:1: error: 'getgroups' undeclared here (not in a function); did you mean 'setgroups'?
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
In file included from posixver.c:34:
/usr/include/fortify/unistd.h: In function 'getgroups':
/usr/include/fortify/unistd.h:81:16: error: called object '__orig_getgroups' is not a function or function pointer
81 | return __orig_getgroups(__l, __s);
| ^~~~~~~~~~~~~~~~
/usr/include/fortify/unistd.h:75:1: note: declared here
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: posixver.o] Error 1
In file included from getdate.h:18,
from getdate.y:449:
../config.h:1359:15: error: duplicate 'unsigned'
1359 | #define ino_t unsigned long
| ^~~~~~~~
make[3]: *** [Makefile:590: posixtm.o] Error 1
make[3]: *** [Makefile:590: strftime.o] Error 1
make[3]: *** [Makefile:590: getdate.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/#define ino_t unsigned long/#define ino_t long/' config.h && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT acl.o -MD -MP -MF ".deps/acl.Tpo" \
-c -o acl.o `test -f 'acl.c' || echo './'`acl.c; \
then mv ".deps/acl.Tpo" ".deps/acl.Po"; \
else rm -f ".deps/acl.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getdate.o -MD -MP -MF ".deps/getdate.Tpo" \
-c -o getdate.o `test -f 'getdate.c' || echo './'`getdate.c; \
then mv ".deps/getdate.Tpo" ".deps/getdate.Po"; \
else rm -f ".deps/getdate.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixtm.o -MD -MP -MF ".deps/posixtm.Tpo" \
-c -o posixtm.o `test -f 'posixtm.c' || echo './'`posixtm.c; \
then mv ".deps/posixtm.Tpo" ".deps/posixtm.Po"; \
else rm -f ".deps/posixtm.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixver.o -MD -MP -MF ".deps/posixver.Tpo" \
-c -o posixver.o `test -f 'posixver.c' || echo './'`posixver.c; \
then mv ".deps/posixver.Tpo" ".deps/posixver.Po"; \
else rm -f ".deps/posixver.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT strftime.o -MD -MP -MF ".deps/strftime.Tpo" \
-c -o strftime.o `test -f 'strftime.c' || echo './'`strftime.c; \
then mv ".deps/strftime.Tpo" ".deps/strftime.Po"; \
else rm -f ".deps/strftime.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt.o -MD -MP -MF ".deps/getopt.Tpo" \
-c -o getopt.o `test -f 'getopt.c' || echo './'`getopt.c; \
then mv ".deps/getopt.Tpo" ".deps/getopt.Po"; \
else rm -f ".deps/getopt.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt1.o -MD -MP -MF ".deps/getopt1.Tpo" \
-c -o getopt1.o `test -f 'getopt1.c' || echo './'`getopt1.c; \
then mv ".deps/getopt1.Tpo" ".deps/getopt1.Po"; \
else rm -f ".deps/getopt1.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT hash.o -MD -MP -MF ".deps/hash.Tpo" \
-c -o hash.o `test -f 'hash.c' || echo './'`hash.c; \
then mv ".deps/hash.Tpo" ".deps/hash.Po"; \
else rm -f ".deps/hash.Tpo"; exit 1; \
fi
In file included from /usr/include/fortify/stdlib.h:33,
from posixver.c:28:
/usr/include/fortify/unistd.h:75:1: error: 'getgroups' undeclared here (not in a function); did you mean 'setgroups'?
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
In file included from posixver.c:34:
/usr/include/fortify/unistd.h: In function 'getgroups':
/usr/include/fortify/unistd.h:81:16: error: called object '__orig_getgroups' is not a function or function pointer
81 | return __orig_getgroups(__l, __s);
| ^~~~~~~~~~~~~~~~
/usr/include/fortify/unistd.h:75:1: note: declared here
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: posixver.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 68 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT acl.o -MD -MP -MF ".deps/acl.Tpo" \
-c -o acl.o `test -f 'acl.c' || echo './'`acl.c; \
then mv ".deps/acl.Tpo" ".deps/acl.Po"; \
else rm -f ".deps/acl.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getdate.o -MD -MP -MF ".deps/getdate.Tpo" \
-c -o getdate.o `test -f 'getdate.c' || echo './'`getdate.c; \
then mv ".deps/getdate.Tpo" ".deps/getdate.Po"; \
else rm -f ".deps/getdate.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixtm.o -MD -MP -MF ".deps/posixtm.Tpo" \
-c -o posixtm.o `test -f 'posixtm.c' || echo './'`posixtm.c; \
then mv ".deps/posixtm.Tpo" ".deps/posixtm.Po"; \
else rm -f ".deps/posixtm.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixver.o -MD -MP -MF ".deps/posixver.Tpo" \
-c -o posixver.o `test -f 'posixver.c' || echo './'`posixver.c; \
then mv ".deps/posixver.Tpo" ".deps/posixver.Po"; \
else rm -f ".deps/posixver.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT strftime.o -MD -MP -MF ".deps/strftime.Tpo" \
-c -o strftime.o `test -f 'strftime.c' || echo './'`strftime.c; \
then mv ".deps/strftime.Tpo" ".deps/strftime.Po"; \
else rm -f ".deps/strftime.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt.o -MD -MP -MF ".deps/getopt.Tpo" \
-c -o getopt.o `test -f 'getopt.c' || echo './'`getopt.c; \
then mv ".deps/getopt.Tpo" ".deps/getopt.Po"; \
else rm -f ".deps/getopt.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt1.o -MD -MP -MF ".deps/getopt1.Tpo" \
-c -o getopt1.o `test -f 'getopt1.c' || echo './'`getopt1.c; \
then mv ".deps/getopt1.Tpo" ".deps/getopt1.Po"; \
else rm -f ".deps/getopt1.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT hash.o -MD -MP -MF ".deps/hash.Tpo" \
-c -o hash.o `test -f 'hash.c' || echo './'`hash.c; \
then mv ".deps/hash.Tpo" ".deps/hash.Po"; \
else rm -f ".deps/hash.Tpo"; exit 1; \
fi
In file included from /usr/include/fortify/stdlib.h:33,
from posixver.c:28:
/usr/include/fortify/unistd.h:75:1: error: 'getgroups' undeclared here (not in a function); did you mean 'setgroups'?
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
In file included from posixver.c:34:
/usr/include/fortify/unistd.h: In function 'getgroups':
/usr/include/fortify/unistd.h:81:16: error: called object '__orig_getgroups' is not a function or function pointer
81 | return __orig_getgroups(__l, __s);
| ^~~~~~~~~~~~~~~~
/usr/include/fortify/unistd.h:75:1: note: declared here
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: posixver.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#define HAVE_GETGROUPS 1/#define HAVE_GETGROUPS 0/' config.h && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT acl.o -MD -MP -MF ".deps/acl.Tpo" \
-c -o acl.o `test -f 'acl.c' || echo './'`acl.c; \
then mv ".deps/acl.Tpo" ".deps/acl.Po"; \
else rm -f ".deps/acl.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getdate.o -MD -MP -MF ".deps/getdate.Tpo" \
-c -o getdate.o `test -f 'getdate.c' || echo './'`getdate.c; \
then mv ".deps/getdate.Tpo" ".deps/getdate.Po"; \
else rm -f ".deps/getdate.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixtm.o -MD -MP -MF ".deps/posixtm.Tpo" \
-c -o posixtm.o `test -f 'posixtm.c' || echo './'`posixtm.c; \
then mv ".deps/posixtm.Tpo" ".deps/posixtm.Po"; \
else rm -f ".deps/posixtm.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixver.o -MD -MP -MF ".deps/posixver.Tpo" \
-c -o posixver.o `test -f 'posixver.c' || echo './'`posixver.c; \
then mv ".deps/posixver.Tpo" ".deps/posixver.Po"; \
else rm -f ".deps/posixver.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT strftime.o -MD -MP -MF ".deps/strftime.Tpo" \
-c -o strftime.o `test -f 'strftime.c' || echo './'`strftime.c; \
then mv ".deps/strftime.Tpo" ".deps/strftime.Po"; \
else rm -f ".deps/strftime.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt.o -MD -MP -MF ".deps/getopt.Tpo" \
-c -o getopt.o `test -f 'getopt.c' || echo './'`getopt.c; \
then mv ".deps/getopt.Tpo" ".deps/getopt.Po"; \
else rm -f ".deps/getopt.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt1.o -MD -MP -MF ".deps/getopt1.Tpo" \
-c -o getopt1.o `test -f 'getopt1.c' || echo './'`getopt1.c; \
then mv ".deps/getopt1.Tpo" ".deps/getopt1.Po"; \
else rm -f ".deps/getopt1.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT hash.o -MD -MP -MF ".deps/hash.Tpo" \
-c -o hash.o `test -f 'hash.c' || echo './'`hash.c; \
then mv ".deps/hash.Tpo" ".deps/hash.Po"; \
else rm -f ".deps/hash.Tpo"; exit 1; \
fi
In file included from /usr/include/fortify/stdlib.h:33,
from posixver.c:28:
/usr/include/fortify/unistd.h:75:1: error: 'getgroups' undeclared here (not in a function); did you mean 'setgroups'?
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
In file included from posixver.c:34:
/usr/include/fortify/unistd.h: In function 'getgroups':
/usr/include/fortify/unistd.h:81:16: error: called object '__orig_getgroups' is not a function or function pointer
81 | return __orig_getgroups(__l, __s);
| ^~~~~~~~~~~~~~~~
/usr/include/fortify/unistd.h:75:1: note: declared here
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: posixver.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 68 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT acl.o -MD -MP -MF ".deps/acl.Tpo" \
-c -o acl.o `test -f 'acl.c' || echo './'`acl.c; \
then mv ".deps/acl.Tpo" ".deps/acl.Po"; \
else rm -f ".deps/acl.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getdate.o -MD -MP -MF ".deps/getdate.Tpo" \
-c -o getdate.o `test -f 'getdate.c' || echo './'`getdate.c; \
then mv ".deps/getdate.Tpo" ".deps/getdate.Po"; \
else rm -f ".deps/getdate.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixtm.o -MD -MP -MF ".deps/posixtm.Tpo" \
-c -o posixtm.o `test -f 'posixtm.c' || echo './'`posixtm.c; \
then mv ".deps/posixtm.Tpo" ".deps/posixtm.Po"; \
else rm -f ".deps/posixtm.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixver.o -MD -MP -MF ".deps/posixver.Tpo" \
-c -o posixver.o `test -f 'posixver.c' || echo './'`posixver.c; \
then mv ".deps/posixver.Tpo" ".deps/posixver.Po"; \
else rm -f ".deps/posixver.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT strftime.o -MD -MP -MF ".deps/strftime.Tpo" \
-c -o strftime.o `test -f 'strftime.c' || echo './'`strftime.c; \
then mv ".deps/strftime.Tpo" ".deps/strftime.Po"; \
else rm -f ".deps/strftime.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt.o -MD -MP -MF ".deps/getopt.Tpo" \
-c -o getopt.o `test -f 'getopt.c' || echo './'`getopt.c; \
then mv ".deps/getopt.Tpo" ".deps/getopt.Po"; \
else rm -f ".deps/getopt.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt1.o -MD -MP -MF ".deps/getopt1.Tpo" \
-c -o getopt1.o `test -f 'getopt1.c' || echo './'`getopt1.c; \
then mv ".deps/getopt1.Tpo" ".deps/getopt1.Po"; \
else rm -f ".deps/getopt1.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT hash.o -MD -MP -MF ".deps/hash.Tpo" \
-c -o hash.o `test -f 'hash.c' || echo './'`hash.c; \
then mv ".deps/hash.Tpo" ".deps/hash.Po"; \
else rm -f ".deps/hash.Tpo"; exit 1; \
fi
In file included from /usr/include/fortify/stdlib.h:33,
from posixver.c:28:
/usr/include/fortify/unistd.h:75:1: error: 'getgroups' undeclared here (not in a function); did you mean 'setgroups'?
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
In file included from posixver.c:34:
/usr/include/fortify/unistd.h: In function 'getgroups':
/usr/include/fortify/unistd.h:81:16: error: called object '__orig_getgroups' is not a function or function pointer
81 | return __orig_getgroups(__l, __s);
| ^~~~~~~~~~~~~~~~
/usr/include/fortify/unistd.h:75:1: note: declared here
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: posixver.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#define HAVE_GETGROUPS 0/#undef HAVE_GETGROUPS/' config.h && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT acl.o -MD -MP -MF ".deps/acl.Tpo" \
-c -o acl.o `test -f 'acl.c' || echo './'`acl.c; \
then mv ".deps/acl.Tpo" ".deps/acl.Po"; \
else rm -f ".deps/acl.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getdate.o -MD -MP -MF ".deps/getdate.Tpo" \
-c -o getdate.o `test -f 'getdate.c' || echo './'`getdate.c; \
then mv ".deps/getdate.Tpo" ".deps/getdate.Po"; \
else rm -f ".deps/getdate.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixtm.o -MD -MP -MF ".deps/posixtm.Tpo" \
-c -o posixtm.o `test -f 'posixtm.c' || echo './'`posixtm.c; \
then mv ".deps/posixtm.Tpo" ".deps/posixtm.Po"; \
else rm -f ".deps/posixtm.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixver.o -MD -MP -MF ".deps/posixver.Tpo" \
-c -o posixver.o `test -f 'posixver.c' || echo './'`posixver.c; \
then mv ".deps/posixver.Tpo" ".deps/posixver.Po"; \
else rm -f ".deps/posixver.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT strftime.o -MD -MP -MF ".deps/strftime.Tpo" \
-c -o strftime.o `test -f 'strftime.c' || echo './'`strftime.c; \
then mv ".deps/strftime.Tpo" ".deps/strftime.Po"; \
else rm -f ".deps/strftime.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt.o -MD -MP -MF ".deps/getopt.Tpo" \
-c -o getopt.o `test -f 'getopt.c' || echo './'`getopt.c; \
then mv ".deps/getopt.Tpo" ".deps/getopt.Po"; \
else rm -f ".deps/getopt.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt1.o -MD -MP -MF ".deps/getopt1.Tpo" \
-c -o getopt1.o `test -f 'getopt1.c' || echo './'`getopt1.c; \
then mv ".deps/getopt1.Tpo" ".deps/getopt1.Po"; \
else rm -f ".deps/getopt1.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT hash.o -MD -MP -MF ".deps/hash.Tpo" \
-c -o hash.o `test -f 'hash.c' || echo './'`hash.c; \
then mv ".deps/hash.Tpo" ".deps/hash.Po"; \
else rm -f ".deps/hash.Tpo"; exit 1; \
fi
In file included from /usr/include/fortify/stdlib.h:33,
from posixver.c:28:
/usr/include/fortify/unistd.h:75:1: error: 'getgroups' undeclared here (not in a function); did you mean 'setgroups'?
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
In file included from posixver.c:34:
/usr/include/fortify/unistd.h: In function 'getgroups':
/usr/include/fortify/unistd.h:81:16: error: called object '__orig_getgroups' is not a function or function pointer
81 | return __orig_getgroups(__l, __s);
| ^~~~~~~~~~~~~~~~
/usr/include/fortify/unistd.h:75:1: note: declared here
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: posixver.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 68 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT acl.o -MD -MP -MF ".deps/acl.Tpo" \
-c -o acl.o `test -f 'acl.c' || echo './'`acl.c; \
then mv ".deps/acl.Tpo" ".deps/acl.Po"; \
else rm -f ".deps/acl.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getdate.o -MD -MP -MF ".deps/getdate.Tpo" \
-c -o getdate.o `test -f 'getdate.c' || echo './'`getdate.c; \
then mv ".deps/getdate.Tpo" ".deps/getdate.Po"; \
else rm -f ".deps/getdate.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixtm.o -MD -MP -MF ".deps/posixtm.Tpo" \
-c -o posixtm.o `test -f 'posixtm.c' || echo './'`posixtm.c; \
then mv ".deps/posixtm.Tpo" ".deps/posixtm.Po"; \
else rm -f ".deps/posixtm.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixver.o -MD -MP -MF ".deps/posixver.Tpo" \
-c -o posixver.o `test -f 'posixver.c' || echo './'`posixver.c; \
then mv ".deps/posixver.Tpo" ".deps/posixver.Po"; \
else rm -f ".deps/posixver.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT strftime.o -MD -MP -MF ".deps/strftime.Tpo" \
-c -o strftime.o `test -f 'strftime.c' || echo './'`strftime.c; \
then mv ".deps/strftime.Tpo" ".deps/strftime.Po"; \
else rm -f ".deps/strftime.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt.o -MD -MP -MF ".deps/getopt.Tpo" \
-c -o getopt.o `test -f 'getopt.c' || echo './'`getopt.c; \
then mv ".deps/getopt.Tpo" ".deps/getopt.Po"; \
else rm -f ".deps/getopt.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt1.o -MD -MP -MF ".deps/getopt1.Tpo" \
-c -o getopt1.o `test -f 'getopt1.c' || echo './'`getopt1.c; \
then mv ".deps/getopt1.Tpo" ".deps/getopt1.Po"; \
else rm -f ".deps/getopt1.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT hash.o -MD -MP -MF ".deps/hash.Tpo" \
-c -o hash.o `test -f 'hash.c' || echo './'`hash.c; \
then mv ".deps/hash.Tpo" ".deps/hash.Po"; \
else rm -f ".deps/hash.Tpo"; exit 1; \
fi
In file included from /usr/include/fortify/stdlib.h:33,
from posixver.c:28:
/usr/include/fortify/unistd.h:75:1: error: 'getgroups' undeclared here (not in a function); did you mean 'setgroups'?
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
In file included from posixver.c:34:
/usr/include/fortify/unistd.h: In function 'getgroups':
/usr/include/fortify/unistd.h:81:16: error: called object '__orig_getgroups' is not a function or function pointer
81 | return __orig_getgroups(__l, __s);
| ^~~~~~~~~~~~~~~~
/usr/include/fortify/unistd.h:75:1: note: declared here
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: posixver.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#undef HAVE_GETGROUPS/#define HAVE_GETGROUPS 0/' config.h && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT acl.o -MD -MP -MF ".deps/acl.Tpo" \
-c -o acl.o `test -f 'acl.c' || echo './'`acl.c; \
then mv ".deps/acl.Tpo" ".deps/acl.Po"; \
else rm -f ".deps/acl.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getdate.o -MD -MP -MF ".deps/getdate.Tpo" \
-c -o getdate.o `test -f 'getdate.c' || echo './'`getdate.c; \
then mv ".deps/getdate.Tpo" ".deps/getdate.Po"; \
else rm -f ".deps/getdate.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixtm.o -MD -MP -MF ".deps/posixtm.Tpo" \
-c -o posixtm.o `test -f 'posixtm.c' || echo './'`posixtm.c; \
then mv ".deps/posixtm.Tpo" ".deps/posixtm.Po"; \
else rm -f ".deps/posixtm.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixver.o -MD -MP -MF ".deps/posixver.Tpo" \
-c -o posixver.o `test -f 'posixver.c' || echo './'`posixver.c; \
then mv ".deps/posixver.Tpo" ".deps/posixver.Po"; \
else rm -f ".deps/posixver.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT strftime.o -MD -MP -MF ".deps/strftime.Tpo" \
-c -o strftime.o `test -f 'strftime.c' || echo './'`strftime.c; \
then mv ".deps/strftime.Tpo" ".deps/strftime.Po"; \
else rm -f ".deps/strftime.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt.o -MD -MP -MF ".deps/getopt.Tpo" \
-c -o getopt.o `test -f 'getopt.c' || echo './'`getopt.c; \
then mv ".deps/getopt.Tpo" ".deps/getopt.Po"; \
else rm -f ".deps/getopt.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt1.o -MD -MP -MF ".deps/getopt1.Tpo" \
-c -o getopt1.o `test -f 'getopt1.c' || echo './'`getopt1.c; \
then mv ".deps/getopt1.Tpo" ".deps/getopt1.Po"; \
else rm -f ".deps/getopt1.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT hash.o -MD -MP -MF ".deps/hash.Tpo" \
-c -o hash.o `test -f 'hash.c' || echo './'`hash.c; \
then mv ".deps/hash.Tpo" ".deps/hash.Po"; \
else rm -f ".deps/hash.Tpo"; exit 1; \
fi
In file included from /usr/include/fortify/stdlib.h:33,
from posixver.c:28:
/usr/include/fortify/unistd.h:75:1: error: 'getgroups' undeclared here (not in a function); did you mean 'setgroups'?
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
In file included from posixver.c:34:
/usr/include/fortify/unistd.h: In function 'getgroups':
/usr/include/fortify/unistd.h:81:16: error: called object '__orig_getgroups' is not a function or function pointer
81 | return __orig_getgroups(__l, __s);
| ^~~~~~~~~~~~~~~~
/usr/include/fortify/unistd.h:75:1: note: declared here
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: posixver.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 68 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT acl.o -MD -MP -MF ".deps/acl.Tpo" \
-c -o acl.o `test -f 'acl.c' || echo './'`acl.c; \
then mv ".deps/acl.Tpo" ".deps/acl.Po"; \
else rm -f ".deps/acl.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getdate.o -MD -MP -MF ".deps/getdate.Tpo" \
-c -o getdate.o `test -f 'getdate.c' || echo './'`getdate.c; \
then mv ".deps/getdate.Tpo" ".deps/getdate.Po"; \
else rm -f ".deps/getdate.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixtm.o -MD -MP -MF ".deps/posixtm.Tpo" \
-c -o posixtm.o `test -f 'posixtm.c' || echo './'`posixtm.c; \
then mv ".deps/posixtm.Tpo" ".deps/posixtm.Po"; \
else rm -f ".deps/posixtm.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT posixver.o -MD -MP -MF ".deps/posixver.Tpo" \
-c -o posixver.o `test -f 'posixver.c' || echo './'`posixver.c; \
then mv ".deps/posixver.Tpo" ".deps/posixver.Po"; \
else rm -f ".deps/posixver.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT strftime.o -MD -MP -MF ".deps/strftime.Tpo" \
-c -o strftime.o `test -f 'strftime.c' || echo './'`strftime.c; \
then mv ".deps/strftime.Tpo" ".deps/strftime.Po"; \
else rm -f ".deps/strftime.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt.o -MD -MP -MF ".deps/getopt.Tpo" \
-c -o getopt.o `test -f 'getopt.c' || echo './'`getopt.c; \
then mv ".deps/getopt.Tpo" ".deps/getopt.Po"; \
else rm -f ".deps/getopt.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT getopt1.o -MD -MP -MF ".deps/getopt1.Tpo" \
-c -o getopt1.o `test -f 'getopt1.c' || echo './'`getopt1.c; \
then mv ".deps/getopt1.Tpo" ".deps/getopt1.Po"; \
else rm -f ".deps/getopt1.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -g -O2 -MT hash.o -MD -MP -MF ".deps/hash.Tpo" \
-c -o hash.o `test -f 'hash.c' || echo './'`hash.c; \
then mv ".deps/hash.Tpo" ".deps/hash.Po"; \
else rm -f ".deps/hash.Tpo"; exit 1; \
fi
In file included from /usr/include/fortify/stdlib.h:33,
from posixver.c:28:
/usr/include/fortify/unistd.h:75:1: error: 'getgroups' undeclared here (not in a function); did you mean 'setgroups'?
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
In file included from posixver.c:34:
/usr/include/fortify/unistd.h: In function 'getgroups':
/usr/include/fortify/unistd.h:81:16: error: called object '__orig_getgroups' is not a function or function pointer
81 | return __orig_getgroups(__l, __s);
| ^~~~~~~~~~~~~~~~
/usr/include/fortify/unistd.h:75:1: note: declared here
75 | _FORTIFY_FN(getgroups) int getgroups(int __l, gid_t * _FORTIFY_POS0 __s)
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: posixver.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && CFLAGS="-include sys/types.h" ./configure --prefix=/home/peter/result && make -j$(nproc) checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking for perl5.003 or newer... no
configure: WARNING:
WARNING: You don't seem to have perl5.003 or newer installed, or you lack
a usable version of the Perl File::Compare module. As a result,
you may be unable to run a few tests or to regenerate certain
files if you modify the sources from which they are derived.
checking for gcc... gcc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking whether gcc needs -traditional... no
checking for ranlib... ranlib
checking whether ln -s works... yes
checking for AIX... no
checking for ANSI C header files... no
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking for uname... yes
checking for chroot... yes
checking for gethostid... yes
checking for strerror in -lcposix... no
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for _LARGE_FILES value needed for large files... no
checking for gcc option to accept ANSI C... none needed
checking for function prototypes... yes
checking for ANSI C header files... (cached) no
checking for string.h... (cached) yes
checking whether byte ordering is bigendian... no
checking for an ANSI C-conforming const... yes
checking for working volatile... yes
checking for inline... inline
checking for working long double with more range or precision than double... no
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking float.h usability... yes
checking float.h presence... yes
checking for float.h... yes
checking hurd.h usability... no
checking hurd.h presence... no
checkin
[command output truncated]
nu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
277 | md5_process_block (memcpy (ctx->buffer, buffer, 64), 64, ctx);
| ^~~~~~
md5.c:277:32: note: include '<string.h>' or provide a declaration of 'memcpy'
md5.c:295:7: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
295 | memcpy (&ctx->buffer[left_over], buffer, len);
| ^~~~~~
md5.c:295:7: note: include '<string.h>' or provide a declaration of 'memcpy'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT offtostr.o -MD -MP -MF ".deps/offtostr.Tpo" \
-c -o offtostr.o `test -f 'offtostr.c' || echo './'`offtostr.c; \
then mv ".deps/offtostr.Tpo" ".deps/offtostr.Po"; \
else rm -f ".deps/offtostr.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT path-concat.o -MD -MP -MF ".deps/path-concat.Tpo" \
-c -o path-concat.o `test -f 'path-concat.c' || echo './'`path-concat.c; \
then mv ".deps/path-concat.Tpo" ".deps/path-concat.Po"; \
else rm -f ".deps/path-concat.Tpo"; exit 1; \
fi
make[3]: *** [Makefile:590: md5.o] Error 1
make[3]: *** Waiting for unfinished jobs....
modechange.c:38:7: warning: conflicting types for built-in function 'malloc'; expected 'void *(long unsigned int)' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
38 | char *malloc ();
| ^~~~~~
modechange.c:34:1: note: 'malloc' is declared in header '<stdlib.h>'
33 | #include "xstrtol.h"
+++ |+#include <stdlib.h>
34 |
modechange.c: In function 'mode_free':
modechange.c:478:7: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
478 | free (changes);
| ^~~~
modechange.c:478:7: note: include '<stdlib.h>' or provide a declaration of 'free'
modechange.c:478:7: warning: incompatible implicit declaration of built-in function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
modechange.c:478:7: note: include '<stdlib.h>' or provide a declaration of 'free'
make[3]: *** [Makefile:590: modechange.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 117 lines
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking for perl5.003 or newer... no
configure: WARNING:
WARNING: You don't seem to have perl5.003 or newer installed, or you lack
a usable version of the Perl File::Compare module. As a result,
you may be unable to run a few tests or to regenerate certain
files if you modify the sources from which they are derived.
checking for gcc... gcc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking whether gcc needs -traditional... no
checking for ranlib... ranlib
checking whether ln -s works... yes
checking for AIX... no
checking for ANSI C header files... no
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking for uname... yes
checking for chroot... yes
checking for gethostid... yes
checking for strerror in -lcposix... no
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for _LARGE_FILES value needed for large files... no
checking for gcc option to accept ANSI C... none needed
checking for function prototypes... yes
checking for ANSI C header files... (cached) no
checking for string.h... (cached) yes
checking whether byte ordering is bigendian... no
checking for an ANSI C-conforming const... yes
checking for working volatile... yes
checking for inline... inline
checking for working long double with more range or precision than double... no
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking float.h usability... yes
checking float.h presence... yes
checking for float.h... yes
checking hurd.h usability... no
checking hurd.h presence... no
checkin
[command output truncated]
nu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
277 | md5_process_block (memcpy (ctx->buffer, buffer, 64), 64, ctx);
| ^~~~~~
md5.c:277:32: note: include '<string.h>' or provide a declaration of 'memcpy'
md5.c:295:7: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
295 | memcpy (&ctx->buffer[left_over], buffer, len);
| ^~~~~~
md5.c:295:7: note: include '<string.h>' or provide a declaration of 'memcpy'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT offtostr.o -MD -MP -MF ".deps/offtostr.Tpo" \
-c -o offtostr.o `test -f 'offtostr.c' || echo './'`offtostr.c; \
then mv ".deps/offtostr.Tpo" ".deps/offtostr.Po"; \
else rm -f ".deps/offtostr.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT path-concat.o -MD -MP -MF ".deps/path-concat.Tpo" \
-c -o path-concat.o `test -f 'path-concat.c' || echo './'`path-concat.c; \
then mv ".deps/path-concat.Tpo" ".deps/path-concat.Po"; \
else rm -f ".deps/path-concat.Tpo"; exit 1; \
fi
make[3]: *** [Makefile:590: md5.o] Error 1
make[3]: *** Waiting for unfinished jobs....
modechange.c:38:7: warning: conflicting types for built-in function 'malloc'; expected 'void *(long unsigned int)' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
38 | char *malloc ();
| ^~~~~~
modechange.c:34:1: note: 'malloc' is declared in header '<stdlib.h>'
33 | #include "xstrtol.h"
+++ |+#include <stdlib.h>
34 |
modechange.c: In function 'mode_free':
modechange.c:478:7: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
478 | free (changes);
| ^~~~
modechange.c:478:7: note: include '<stdlib.h>' or provide a declaration of 'free'
modechange.c:478:7: warning: incompatible implicit declaration of built-in function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
modechange.c:478:7: note: include '<stdlib.h>' or provide a declaration of 'free'
make[3]: *** [Makefile:590: modechange.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^char \*malloc ();/#include <stdlib.h>/' lib/modechange.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT md5.o -MD -MP -MF ".deps/md5.Tpo" \
-c -o md5.o `test -f 'md5.c' || echo './'`md5.c; \
then mv ".deps/md5.Tpo" ".deps/md5.Po"; \
else rm -f ".deps/md5.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT modechange.o -MD -MP -MF ".deps/modechange.Tpo" \
-c -o modechange.o `test -f 'modechange.c' || echo './'`modechange.c; \
then mv ".deps/modechange.Tpo" ".deps/modechange.Po"; \
else rm -f ".deps/modechange.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT physmem.o -MD -MP -MF ".deps/physmem.Tpo" \
-c -o physmem.o `test -f 'physmem.c' || echo './'`physmem.c; \
then mv ".deps/physmem.Tpo" ".deps/physmem.Po"; \
else rm -f ".deps/physmem.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT quote.o -MD -MP -MF ".deps/quote.Tpo" \
-c -o quote.o `test -f 'quote.c' || echo './'`quote.c; \
then mv ".deps/quote.Tpo" ".deps/quote.Po"; \
else rm -f ".deps/quote.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT quotearg.o -MD -MP -MF ".deps/quotearg.Tpo" \
-c -o quotearg.o `test -f 'quotearg.c' || echo './'`quotearg.c; \
then mv ".deps/quotearg.Tpo" ".deps/quotearg.Po"; \
else rm -f ".deps/quotearg.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT readtokens.o -MD -MP -MF ".deps/readtokens.Tpo" \
-c -o readtokens.o `test -f 'readtokens.c' || echo './'`readtokens.c; \
then mv ".deps/readtokens.Tpo" ".deps/readtokens.Po"; \
else rm -f ".deps/readtokens.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT safe-read.o -MD -MP -MF ".deps/safe-read.Tpo" \
-c -o safe-read.o `test -f 'safe-read.c' || echo './'`safe-read.c; \
then mv ".deps/safe-read.Tpo" ".deps/safe-read.Po"; \
else rm -f ".deps/safe-read.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT safe-write.o -MD -MP -MF ".deps/safe-write.Tpo" \
-c -o safe-write.o `test -f 'safe-write.c' || echo './'`safe-write.c; \
then mv ".deps/safe-write.Tpo" ".deps/safe-write.Po"; \
else rm -f ".deps/safe-write.Tpo"; exit 1; \
fi
md5.c: In function 'md5_finish_ctx':
md5.c:129:3: error: implicit declaration of function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wi
[command output truncated]
laration-mismatch-Wbuiltin-declaration-mismatch]8;;]
246 | memcpy (&ctx->buffer[left_over], buffer, add);
| ^~~~~~
md5.c:246:7: note: include '<string.h>' or provide a declaration of 'memcpy'
md5.c:277:32: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
277 | md5_process_block (memcpy (ctx->buffer, buffer, 64), 64, ctx);
| ^~~~~~
md5.c:277:32: note: include '<string.h>' or provide a declaration of 'memcpy'
md5.c:295:7: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
295 | memcpy (&ctx->buffer[left_over], buffer, len);
| ^~~~~~
md5.c:295:7: note: include '<string.h>' or provide a declaration of 'memcpy'
readtokens.c: In function 'readtoken':
readtokens.c:92:5: error: implicit declaration of function 'abort' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
92 | abort ();
| ^~~~~
readtokens.c:54:1: note: include '<stdlib.h>' or provide a declaration of 'abort'
53 | #include "xalloc.h"
+++ |+#include <stdlib.h>
54 |
readtokens.c:92:5: warning: incompatible implicit declaration of built-in function 'abort' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
92 | abort ();
| ^~~~~
readtokens.c:92:5: note: include '<stdlib.h>' or provide a declaration of 'abort'
readtokens.c: In function 'readtokens':
readtokens.c:216:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
216 | free (token->buffer);
| ^~~~
readtokens.c:216:3: note: include '<stdlib.h>' or provide a declaration of 'free'
readtokens.c:216:3: warning: incompatible implicit declaration of built-in function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
readtokens.c:216:3: note: include '<stdlib.h>' or provide a declaration of 'free'
make[3]: *** [Makefile:590: readtokens.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [Makefile:590: md5.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 90 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT md5.o -MD -MP -MF ".deps/md5.Tpo" \
-c -o md5.o `test -f 'md5.c' || echo './'`md5.c; \
then mv ".deps/md5.Tpo" ".deps/md5.Po"; \
else rm -f ".deps/md5.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT modechange.o -MD -MP -MF ".deps/modechange.Tpo" \
-c -o modechange.o `test -f 'modechange.c' || echo './'`modechange.c; \
then mv ".deps/modechange.Tpo" ".deps/modechange.Po"; \
else rm -f ".deps/modechange.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT physmem.o -MD -MP -MF ".deps/physmem.Tpo" \
-c -o physmem.o `test -f 'physmem.c' || echo './'`physmem.c; \
then mv ".deps/physmem.Tpo" ".deps/physmem.Po"; \
else rm -f ".deps/physmem.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT quote.o -MD -MP -MF ".deps/quote.Tpo" \
-c -o quote.o `test -f 'quote.c' || echo './'`quote.c; \
then mv ".deps/quote.Tpo" ".deps/quote.Po"; \
else rm -f ".deps/quote.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT quotearg.o -MD -MP -MF ".deps/quotearg.Tpo" \
-c -o quotearg.o `test -f 'quotearg.c' || echo './'`quotearg.c; \
then mv ".deps/quotearg.Tpo" ".deps/quotearg.Po"; \
else rm -f ".deps/quotearg.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT readtokens.o -MD -MP -MF ".deps/readtokens.Tpo" \
-c -o readtokens.o `test -f 'readtokens.c' || echo './'`readtokens.c; \
then mv ".deps/readtokens.Tpo" ".deps/readtokens.Po"; \
else rm -f ".deps/readtokens.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT safe-read.o -MD -MP -MF ".deps/safe-read.Tpo" \
-c -o safe-read.o `test -f 'safe-read.c' || echo './'`safe-read.c; \
then mv ".deps/safe-read.Tpo" ".deps/safe-read.Po"; \
else rm -f ".deps/safe-read.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT safe-write.o -MD -MP -MF ".deps/safe-write.Tpo" \
-c -o safe-write.o `test -f 'safe-write.c' || echo './'`safe-write.c; \
then mv ".deps/safe-write.Tpo" ".deps/safe-write.Po"; \
else rm -f ".deps/safe-write.Tpo"; exit 1; \
fi
md5.c: In function 'md5_finish_ctx':
md5.c:129:3: error: implicit declaration of function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wi
[command output truncated]
laration-mismatch-Wbuiltin-declaration-mismatch]8;;]
246 | memcpy (&ctx->buffer[left_over], buffer, add);
| ^~~~~~
md5.c:246:7: note: include '<string.h>' or provide a declaration of 'memcpy'
md5.c:277:32: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
277 | md5_process_block (memcpy (ctx->buffer, buffer, 64), 64, ctx);
| ^~~~~~
md5.c:277:32: note: include '<string.h>' or provide a declaration of 'memcpy'
md5.c:295:7: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
295 | memcpy (&ctx->buffer[left_over], buffer, len);
| ^~~~~~
md5.c:295:7: note: include '<string.h>' or provide a declaration of 'memcpy'
readtokens.c: In function 'readtoken':
readtokens.c:92:5: error: implicit declaration of function 'abort' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
92 | abort ();
| ^~~~~
readtokens.c:54:1: note: include '<stdlib.h>' or provide a declaration of 'abort'
53 | #include "xalloc.h"
+++ |+#include <stdlib.h>
54 |
readtokens.c:92:5: warning: incompatible implicit declaration of built-in function 'abort' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
92 | abort ();
| ^~~~~
readtokens.c:92:5: note: include '<stdlib.h>' or provide a declaration of 'abort'
readtokens.c: In function 'readtokens':
readtokens.c:216:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
216 | free (token->buffer);
| ^~~~
readtokens.c:216:3: note: include '<stdlib.h>' or provide a declaration of 'free'
readtokens.c:216:3: warning: incompatible implicit declaration of built-in function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
readtokens.c:216:3: note: include '<stdlib.h>' or provide a declaration of 'free'
make[3]: *** [Makefile:590: readtokens.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [Makefile:590: md5.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "xalloc.h"/#include "xalloc.h"\n#include <stdlib.h>\n#include <string.h>/' lib/md5.c lib/readtokens.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT md5.o -MD -MP -MF ".deps/md5.Tpo" \
-c -o md5.o `test -f 'md5.c' || echo './'`md5.c; \
then mv ".deps/md5.Tpo" ".deps/md5.Po"; \
else rm -f ".deps/md5.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT readtokens.o -MD -MP -MF ".deps/readtokens.Tpo" \
-c -o readtokens.o `test -f 'readtokens.c' || echo './'`readtokens.c; \
then mv ".deps/readtokens.Tpo" ".deps/readtokens.Po"; \
else rm -f ".deps/readtokens.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT same.o -MD -MP -MF ".deps/same.Tpo" \
-c -o same.o `test -f 'same.c' || echo './'`same.c; \
then mv ".deps/same.Tpo" ".deps/same.Po"; \
else rm -f ".deps/same.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT save-cwd.o -MD -MP -MF ".deps/save-cwd.Tpo" \
-c -o save-cwd.o `test -f 'save-cwd.c' || echo './'`save-cwd.c; \
then mv ".deps/save-cwd.Tpo" ".deps/save-cwd.Po"; \
else rm -f ".deps/save-cwd.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT savedir.o -MD -MP -MF ".deps/savedir.Tpo" \
-c -o savedir.o `test -f 'savedir.c' || echo './'`savedir.c; \
then mv ".deps/savedir.Tpo" ".deps/savedir.Po"; \
else rm -f ".deps/savedir.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT settime.o -MD -MP -MF ".deps/settime.Tpo" \
-c -o settime.o `test -f 'settime.c' || echo './'`settime.c; \
then mv ".deps/settime.Tpo" ".deps/settime.Po"; \
else rm -f ".deps/settime.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT sha.o -MD -MP -MF ".deps/sha.Tpo" \
-c -o sha.o `test -f 'sha.c' || echo './'`sha.c; \
then mv ".deps/sha.Tpo" ".deps/sha.Po"; \
else rm -f ".deps/sha.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT stripslash.o -MD -MP -MF ".deps/stripslash.Tpo" \
-c -o stripslash.o `test -f 'stripslash.c' || echo './'`stripslash.c; \
then mv ".deps/stripslash.Tpo" ".deps/stripslash.Po"; \
else rm -f ".deps/stripslash.Tpo"; exit 1; \
fi
savedir.c: In function 'savedir':
savedir.c:99:31: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
99 |
[command output truncated]
d.c:145:5: warning: incompatible implicit declaration of built-in function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
145 | free (cwd->name);
| ^~~~
save-cwd.c:145:5: note: include '<stdlib.h>' or provide a declaration of 'free'
make[3]: *** [Makefile:590: savedir.o] Error 1
make[3]: *** Waiting for unfinished jobs....
sha.c: In function 'sha_finish_ctx':
sha.c:109:3: error: implicit declaration of function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
109 | memcpy (&ctx->buffer[bytes], fillbuf, pad);
| ^~~~~~
sha.c:28:1: note: include '<string.h>' or provide a declaration of 'memcpy'
27 | #include "unlocked-io.h"
+++ |+#include <string.h>
28 |
sha.c:109:3: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
109 | memcpy (&ctx->buffer[bytes], fillbuf, pad);
| ^~~~~~
sha.c:109:3: note: include '<string.h>' or provide a declaration of 'memcpy'
sha.c: In function 'sha_process_bytes':
sha.c:217:7: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
217 | memcpy (&ctx->buffer[left_over], buffer, add);
| ^~~~~~
sha.c:217:7: note: include '<string.h>' or provide a declaration of 'memcpy'
sha.c:248:32: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
248 | sha_process_block (memcpy (ctx->buffer, buffer, 64), 64, ctx);
| ^~~~~~
sha.c:248:32: note: include '<string.h>' or provide a declaration of 'memcpy'
sha.c:266:7: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
266 | memcpy (&ctx->buffer[left_over], buffer, len);
| ^~~~~~
sha.c:266:7: note: include '<string.h>' or provide a declaration of 'memcpy'
make[3]: *** [Makefile:590: save-cwd.o] Error 1
make[3]: *** [Makefile:590: md5.o] Error 1
make[3]: *** [Makefile:590: sha.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 91 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT md5.o -MD -MP -MF ".deps/md5.Tpo" \
-c -o md5.o `test -f 'md5.c' || echo './'`md5.c; \
then mv ".deps/md5.Tpo" ".deps/md5.Po"; \
else rm -f ".deps/md5.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT readtokens.o -MD -MP -MF ".deps/readtokens.Tpo" \
-c -o readtokens.o `test -f 'readtokens.c' || echo './'`readtokens.c; \
then mv ".deps/readtokens.Tpo" ".deps/readtokens.Po"; \
else rm -f ".deps/readtokens.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT same.o -MD -MP -MF ".deps/same.Tpo" \
-c -o same.o `test -f 'same.c' || echo './'`same.c; \
then mv ".deps/same.Tpo" ".deps/same.Po"; \
else rm -f ".deps/same.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT save-cwd.o -MD -MP -MF ".deps/save-cwd.Tpo" \
-c -o save-cwd.o `test -f 'save-cwd.c' || echo './'`save-cwd.c; \
then mv ".deps/save-cwd.Tpo" ".deps/save-cwd.Po"; \
else rm -f ".deps/save-cwd.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT savedir.o -MD -MP -MF ".deps/savedir.Tpo" \
-c -o savedir.o `test -f 'savedir.c' || echo './'`savedir.c; \
then mv ".deps/savedir.Tpo" ".deps/savedir.Po"; \
else rm -f ".deps/savedir.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT settime.o -MD -MP -MF ".deps/settime.Tpo" \
-c -o settime.o `test -f 'settime.c' || echo './'`settime.c; \
then mv ".deps/settime.Tpo" ".deps/settime.Po"; \
else rm -f ".deps/settime.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT sha.o -MD -MP -MF ".deps/sha.Tpo" \
-c -o sha.o `test -f 'sha.c' || echo './'`sha.c; \
then mv ".deps/sha.Tpo" ".deps/sha.Po"; \
else rm -f ".deps/sha.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT stripslash.o -MD -MP -MF ".deps/stripslash.Tpo" \
-c -o stripslash.o `test -f 'stripslash.c' || echo './'`stripslash.c; \
then mv ".deps/stripslash.Tpo" ".deps/stripslash.Po"; \
else rm -f ".deps/stripslash.Tpo"; exit 1; \
fi
savedir.c: In function 'savedir':
savedir.c:99:31: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
99 |
[command output truncated]
d.c:145:5: warning: incompatible implicit declaration of built-in function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
145 | free (cwd->name);
| ^~~~
save-cwd.c:145:5: note: include '<stdlib.h>' or provide a declaration of 'free'
make[3]: *** [Makefile:590: savedir.o] Error 1
make[3]: *** Waiting for unfinished jobs....
sha.c: In function 'sha_finish_ctx':
sha.c:109:3: error: implicit declaration of function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
109 | memcpy (&ctx->buffer[bytes], fillbuf, pad);
| ^~~~~~
sha.c:28:1: note: include '<string.h>' or provide a declaration of 'memcpy'
27 | #include "unlocked-io.h"
+++ |+#include <string.h>
28 |
sha.c:109:3: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
109 | memcpy (&ctx->buffer[bytes], fillbuf, pad);
| ^~~~~~
sha.c:109:3: note: include '<string.h>' or provide a declaration of 'memcpy'
sha.c: In function 'sha_process_bytes':
sha.c:217:7: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
217 | memcpy (&ctx->buffer[left_over], buffer, add);
| ^~~~~~
sha.c:217:7: note: include '<string.h>' or provide a declaration of 'memcpy'
sha.c:248:32: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
248 | sha_process_block (memcpy (ctx->buffer, buffer, 64), 64, ctx);
| ^~~~~~
sha.c:248:32: note: include '<string.h>' or provide a declaration of 'memcpy'
sha.c:266:7: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
266 | memcpy (&ctx->buffer[left_over], buffer, len);
| ^~~~~~
sha.c:266:7: note: include '<string.h>' or provide a declaration of 'memcpy'
make[3]: *** [Makefile:590: save-cwd.o] Error 1
make[3]: *** [Makefile:590: md5.o] Error 1
make[3]: *** [Makefile:590: sha.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "unlocked-io.h"/#include "unlocked-io.h"\n#include <string.h>\n#include <stdlib.h>/' lib/savedir.c lib/save-cwd.c lib/sha.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT md5.o -MD -MP -MF ".deps/md5.Tpo" \
-c -o md5.o `test -f 'md5.c' || echo './'`md5.c; \
then mv ".deps/md5.Tpo" ".deps/md5.Po"; \
else rm -f ".deps/md5.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT save-cwd.o -MD -MP -MF ".deps/save-cwd.Tpo" \
-c -o save-cwd.o `test -f 'save-cwd.c' || echo './'`save-cwd.c; \
then mv ".deps/save-cwd.Tpo" ".deps/save-cwd.Po"; \
else rm -f ".deps/save-cwd.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT savedir.o -MD -MP -MF ".deps/savedir.Tpo" \
-c -o savedir.o `test -f 'savedir.c' || echo './'`savedir.c; \
then mv ".deps/savedir.Tpo" ".deps/savedir.Po"; \
else rm -f ".deps/savedir.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT sha.o -MD -MP -MF ".deps/sha.Tpo" \
-c -o sha.o `test -f 'sha.c' || echo './'`sha.c; \
then mv ".deps/sha.Tpo" ".deps/sha.Po"; \
else rm -f ".deps/sha.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT umaxtostr.o -MD -MP -MF ".deps/umaxtostr.Tpo" \
-c -o umaxtostr.o `test -f 'umaxtostr.c' || echo './'`umaxtostr.c; \
then mv ".deps/umaxtostr.Tpo" ".deps/umaxtostr.Po"; \
else rm -f ".deps/umaxtostr.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT unicodeio.o -MD -MP -MF ".deps/unicodeio.Tpo" \
-c -o unicodeio.o `test -f 'unicodeio.c' || echo './'`unicodeio.c; \
then mv ".deps/unicodeio.Tpo" ".deps/unicodeio.Po"; \
else rm -f ".deps/unicodeio.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT userspec.o -MD -MP -MF ".deps/userspec.Tpo" \
-c -o userspec.o `test -f 'userspec.c' || echo './'`userspec.c; \
then mv ".deps/userspec.Tpo" ".deps/userspec.Po"; \
else rm -f ".deps/userspec.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT version-etc.o -MD -MP -MF ".deps/version-etc.Tpo" \
-c -o version-etc.o `test -f 'version-etc.c' || echo './'`version-etc.c; \
then mv ".deps/version-etc.Tpo" ".deps/version-etc.Po"; \
else rm -f ".deps/version-etc.Tpo"; exit 1; \
fi
savedir.c: In function 'savedir':
savedir.c:99:31: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-W
[command output truncated]
ps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
277 | md5_process_block (memcpy (ctx->buffer, buffer, 64), 64, ctx);
| ^~~~~~
md5.c:277:32: note: include '<string.h>' or provide a declaration of 'memcpy'
md5.c:295:7: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
295 | memcpy (&ctx->buffer[left_over], buffer, len);
| ^~~~~~
md5.c:295:7: note: include '<string.h>' or provide a declaration of 'memcpy'
save-cwd.c: In function 'free_cwd':
save-cwd.c:145:5: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
145 | free (cwd->name);
| ^~~~
save-cwd.c:52:1: note: include '<stdlib.h>' or provide a declaration of 'free'
51 | #include "xgetcwd.h"
+++ |+#include <stdlib.h>
52 |
save-cwd.c:145:5: warning: incompatible implicit declaration of built-in function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
145 | free (cwd->name);
| ^~~~
save-cwd.c:145:5: note: include '<stdlib.h>' or provide a declaration of 'free'
make[3]: *** [Makefile:590: savedir.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [Makefile:590: save-cwd.o] Error 1
userspec.c: In function 'parse_user_spec':
userspec.c:332:19: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
332 | free (*username_arg);
| ^~~~
userspec.c:72:1: note: include '<stdlib.h>' or provide a declaration of 'free'
71 | #include "gettext.h"
+++ |+#include <stdlib.h>
72 | #define _(msgid) gettext (msgid)
userspec.c:332:19: warning: incompatible implicit declaration of built-in function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
332 | free (*username_arg);
| ^~~~
userspec.c:332:19: note: include '<stdlib.h>' or provide a declaration of 'free'
make[3]: *** [Makefile:590: userspec.o] Error 1
make[3]: *** [Makefile:590: md5.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 93 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT md5.o -MD -MP -MF ".deps/md5.Tpo" \
-c -o md5.o `test -f 'md5.c' || echo './'`md5.c; \
then mv ".deps/md5.Tpo" ".deps/md5.Po"; \
else rm -f ".deps/md5.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT save-cwd.o -MD -MP -MF ".deps/save-cwd.Tpo" \
-c -o save-cwd.o `test -f 'save-cwd.c' || echo './'`save-cwd.c; \
then mv ".deps/save-cwd.Tpo" ".deps/save-cwd.Po"; \
else rm -f ".deps/save-cwd.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT savedir.o -MD -MP -MF ".deps/savedir.Tpo" \
-c -o savedir.o `test -f 'savedir.c' || echo './'`savedir.c; \
then mv ".deps/savedir.Tpo" ".deps/savedir.Po"; \
else rm -f ".deps/savedir.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT sha.o -MD -MP -MF ".deps/sha.Tpo" \
-c -o sha.o `test -f 'sha.c' || echo './'`sha.c; \
then mv ".deps/sha.Tpo" ".deps/sha.Po"; \
else rm -f ".deps/sha.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT umaxtostr.o -MD -MP -MF ".deps/umaxtostr.Tpo" \
-c -o umaxtostr.o `test -f 'umaxtostr.c' || echo './'`umaxtostr.c; \
then mv ".deps/umaxtostr.Tpo" ".deps/umaxtostr.Po"; \
else rm -f ".deps/umaxtostr.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT unicodeio.o -MD -MP -MF ".deps/unicodeio.Tpo" \
-c -o unicodeio.o `test -f 'unicodeio.c' || echo './'`unicodeio.c; \
then mv ".deps/unicodeio.Tpo" ".deps/unicodeio.Po"; \
else rm -f ".deps/unicodeio.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT userspec.o -MD -MP -MF ".deps/userspec.Tpo" \
-c -o userspec.o `test -f 'userspec.c' || echo './'`userspec.c; \
then mv ".deps/userspec.Tpo" ".deps/userspec.Po"; \
else rm -f ".deps/userspec.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT version-etc.o -MD -MP -MF ".deps/version-etc.Tpo" \
-c -o version-etc.o `test -f 'version-etc.c' || echo './'`version-etc.c; \
then mv ".deps/version-etc.Tpo" ".deps/version-etc.Po"; \
else rm -f ".deps/version-etc.Tpo"; exit 1; \
fi
savedir.c: In function 'savedir':
savedir.c:99:31: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-W
[command output truncated]
ps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
277 | md5_process_block (memcpy (ctx->buffer, buffer, 64), 64, ctx);
| ^~~~~~
md5.c:277:32: note: include '<string.h>' or provide a declaration of 'memcpy'
md5.c:295:7: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
295 | memcpy (&ctx->buffer[left_over], buffer, len);
| ^~~~~~
md5.c:295:7: note: include '<string.h>' or provide a declaration of 'memcpy'
save-cwd.c: In function 'free_cwd':
save-cwd.c:145:5: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
145 | free (cwd->name);
| ^~~~
save-cwd.c:52:1: note: include '<stdlib.h>' or provide a declaration of 'free'
51 | #include "xgetcwd.h"
+++ |+#include <stdlib.h>
52 |
save-cwd.c:145:5: warning: incompatible implicit declaration of built-in function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
145 | free (cwd->name);
| ^~~~
save-cwd.c:145:5: note: include '<stdlib.h>' or provide a declaration of 'free'
make[3]: *** [Makefile:590: savedir.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [Makefile:590: save-cwd.o] Error 1
userspec.c: In function 'parse_user_spec':
userspec.c:332:19: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
332 | free (*username_arg);
| ^~~~
userspec.c:72:1: note: include '<stdlib.h>' or provide a declaration of 'free'
71 | #include "gettext.h"
+++ |+#include <stdlib.h>
72 | #define _(msgid) gettext (msgid)
userspec.c:332:19: warning: incompatible implicit declaration of built-in function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
332 | free (*username_arg);
| ^~~~
userspec.c:332:19: note: include '<stdlib.h>' or provide a declaration of 'free'
make[3]: *** [Makefile:590: userspec.o] Error 1
make[3]: *** [Makefile:590: md5.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "xgetcwd.h"/#include "xgetcwd.h"\n#include <stdlib.h>/' lib/save-cwd.c && sed -i 's/^#include "gettext.h"/#include "gettext.h"\n#include <stdlib.h>/' lib/userspec.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT md5.o -MD -MP -MF ".deps/md5.Tpo" \
-c -o md5.o `test -f 'md5.c' || echo './'`md5.c; \
then mv ".deps/md5.Tpo" ".deps/md5.Po"; \
else rm -f ".deps/md5.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT save-cwd.o -MD -MP -MF ".deps/save-cwd.Tpo" \
-c -o save-cwd.o `test -f 'save-cwd.c' || echo './'`save-cwd.c; \
then mv ".deps/save-cwd.Tpo" ".deps/save-cwd.Po"; \
else rm -f ".deps/save-cwd.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT savedir.o -MD -MP -MF ".deps/savedir.Tpo" \
-c -o savedir.o `test -f 'savedir.c' || echo './'`savedir.c; \
then mv ".deps/savedir.Tpo" ".deps/savedir.Po"; \
else rm -f ".deps/savedir.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT userspec.o -MD -MP -MF ".deps/userspec.Tpo" \
-c -o userspec.o `test -f 'userspec.c' || echo './'`userspec.c; \
then mv ".deps/userspec.Tpo" ".deps/userspec.Po"; \
else rm -f ".deps/userspec.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xgetcwd.o -MD -MP -MF ".deps/xgetcwd.Tpo" \
-c -o xgetcwd.o `test -f 'xgetcwd.c' || echo './'`xgetcwd.c; \
then mv ".deps/xgetcwd.Tpo" ".deps/xgetcwd.Po"; \
else rm -f ".deps/xgetcwd.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xgethostname.o -MD -MP -MF ".deps/xgethostname.Tpo" \
-c -o xgethostname.o `test -f 'xgethostname.c' || echo './'`xgethostname.c; \
then mv ".deps/xgethostname.Tpo" ".deps/xgethostname.Po"; \
else rm -f ".deps/xgethostname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xmalloc.o -MD -MP -MF ".deps/xmalloc.Tpo" \
-c -o xmalloc.o `test -f 'xmalloc.c' || echo './'`xmalloc.c; \
then mv ".deps/xmalloc.Tpo" ".deps/xmalloc.Po"; \
else rm -f ".deps/xmalloc.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xmemcoll.o -MD -MP -MF ".deps/xmemcoll.Tpo" \
-c -o xmemcoll.o `test -f 'xmemcoll.c' || echo './'`xmemcoll.c; \
then mv ".deps/xmemcoll.Tpo" ".deps/xmemcoll.Po"; \
else rm -f ".deps/xmemcoll.Tpo"; exit 1; \
fi
savedir.c: In function 'savedir':
savedir.c:99:31: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-functio
[command output truncated]
+ |+#include <stdlib.h>
65 |
savedir.c:124:7: warning: incompatible implicit declaration of built-in function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
124 | free (name_space);
| ^~~~
savedir.c:124:7: note: include '<stdlib.h>' or provide a declaration of 'free'
md5.c: In function 'md5_finish_ctx':
md5.c:129:3: error: implicit declaration of function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
129 | memcpy (&ctx->buffer[bytes], fillbuf, pad);
| ^~~~~~
md5.c:40:1: note: include '<string.h>' or provide a declaration of 'memcpy'
39 | #include "unlocked-io.h"
+++ |+#include <string.h>
40 |
md5.c:129:3: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
129 | memcpy (&ctx->buffer[bytes], fillbuf, pad);
| ^~~~~~
md5.c:129:3: note: include '<string.h>' or provide a declaration of 'memcpy'
md5.c: In function 'md5_process_bytes':
md5.c:246:7: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
246 | memcpy (&ctx->buffer[left_over], buffer, add);
| ^~~~~~
md5.c:246:7: note: include '<string.h>' or provide a declaration of 'memcpy'
md5.c:277:32: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
277 | md5_process_block (memcpy (ctx->buffer, buffer, 64), 64, ctx);
| ^~~~~~
md5.c:277:32: note: include '<string.h>' or provide a declaration of 'memcpy'
md5.c:295:7: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
295 | memcpy (&ctx->buffer[left_over], buffer, len);
| ^~~~~~
md5.c:295:7: note: include '<string.h>' or provide a declaration of 'memcpy'
make[3]: *** [Makefile:590: xmalloc.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [Makefile:590: savedir.o] Error 1
make[3]: *** [Makefile:590: md5.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 91 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT md5.o -MD -MP -MF ".deps/md5.Tpo" \
-c -o md5.o `test -f 'md5.c' || echo './'`md5.c; \
then mv ".deps/md5.Tpo" ".deps/md5.Po"; \
else rm -f ".deps/md5.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT save-cwd.o -MD -MP -MF ".deps/save-cwd.Tpo" \
-c -o save-cwd.o `test -f 'save-cwd.c' || echo './'`save-cwd.c; \
then mv ".deps/save-cwd.Tpo" ".deps/save-cwd.Po"; \
else rm -f ".deps/save-cwd.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT savedir.o -MD -MP -MF ".deps/savedir.Tpo" \
-c -o savedir.o `test -f 'savedir.c' || echo './'`savedir.c; \
then mv ".deps/savedir.Tpo" ".deps/savedir.Po"; \
else rm -f ".deps/savedir.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT userspec.o -MD -MP -MF ".deps/userspec.Tpo" \
-c -o userspec.o `test -f 'userspec.c' || echo './'`userspec.c; \
then mv ".deps/userspec.Tpo" ".deps/userspec.Po"; \
else rm -f ".deps/userspec.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xgetcwd.o -MD -MP -MF ".deps/xgetcwd.Tpo" \
-c -o xgetcwd.o `test -f 'xgetcwd.c' || echo './'`xgetcwd.c; \
then mv ".deps/xgetcwd.Tpo" ".deps/xgetcwd.Po"; \
else rm -f ".deps/xgetcwd.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xgethostname.o -MD -MP -MF ".deps/xgethostname.Tpo" \
-c -o xgethostname.o `test -f 'xgethostname.c' || echo './'`xgethostname.c; \
then mv ".deps/xgethostname.Tpo" ".deps/xgethostname.Po"; \
else rm -f ".deps/xgethostname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xmalloc.o -MD -MP -MF ".deps/xmalloc.Tpo" \
-c -o xmalloc.o `test -f 'xmalloc.c' || echo './'`xmalloc.c; \
then mv ".deps/xmalloc.Tpo" ".deps/xmalloc.Po"; \
else rm -f ".deps/xmalloc.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xmemcoll.o -MD -MP -MF ".deps/xmemcoll.Tpo" \
-c -o xmemcoll.o `test -f 'xmemcoll.c' || echo './'`xmemcoll.c; \
then mv ".deps/xmemcoll.Tpo" ".deps/xmemcoll.Po"; \
else rm -f ".deps/xmemcoll.Tpo"; exit 1; \
fi
savedir.c: In function 'savedir':
savedir.c:99:31: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-functio
[command output truncated]
+ |+#include <stdlib.h>
65 |
savedir.c:124:7: warning: incompatible implicit declaration of built-in function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
124 | free (name_space);
| ^~~~
savedir.c:124:7: note: include '<stdlib.h>' or provide a declaration of 'free'
md5.c: In function 'md5_finish_ctx':
md5.c:129:3: error: implicit declaration of function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
129 | memcpy (&ctx->buffer[bytes], fillbuf, pad);
| ^~~~~~
md5.c:40:1: note: include '<string.h>' or provide a declaration of 'memcpy'
39 | #include "unlocked-io.h"
+++ |+#include <string.h>
40 |
md5.c:129:3: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
129 | memcpy (&ctx->buffer[bytes], fillbuf, pad);
| ^~~~~~
md5.c:129:3: note: include '<string.h>' or provide a declaration of 'memcpy'
md5.c: In function 'md5_process_bytes':
md5.c:246:7: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
246 | memcpy (&ctx->buffer[left_over], buffer, add);
| ^~~~~~
md5.c:246:7: note: include '<string.h>' or provide a declaration of 'memcpy'
md5.c:277:32: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
277 | md5_process_block (memcpy (ctx->buffer, buffer, 64), 64, ctx);
| ^~~~~~
md5.c:277:32: note: include '<string.h>' or provide a declaration of 'memcpy'
md5.c:295:7: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
295 | memcpy (&ctx->buffer[left_over], buffer, len);
| ^~~~~~
md5.c:295:7: note: include '<string.h>' or provide a declaration of 'memcpy'
make[3]: *** [Makefile:590: xmalloc.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [Makefile:590: savedir.o] Error 1
make[3]: *** [Makefile:590: md5.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "unlocked-io.h"/#include "unlocked-io.h"\n#include <string.h>/' lib/md5.c && sed -i 's/^#include "xalloc.h"/#include "xalloc.h"\n#include <stdlib.h>/' lib/savedir.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT md5.o -MD -MP -MF ".deps/md5.Tpo" \
-c -o md5.o `test -f 'md5.c' || echo './'`md5.c; \
then mv ".deps/md5.Tpo" ".deps/md5.Po"; \
else rm -f ".deps/md5.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT savedir.o -MD -MP -MF ".deps/savedir.Tpo" \
-c -o savedir.o `test -f 'savedir.c' || echo './'`savedir.c; \
then mv ".deps/savedir.Tpo" ".deps/savedir.Po"; \
else rm -f ".deps/savedir.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xmalloc.o -MD -MP -MF ".deps/xmalloc.Tpo" \
-c -o xmalloc.o `test -f 'xmalloc.c' || echo './'`xmalloc.c; \
then mv ".deps/xmalloc.Tpo" ".deps/xmalloc.Po"; \
else rm -f ".deps/xmalloc.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xnanosleep.o -MD -MP -MF ".deps/xnanosleep.Tpo" \
-c -o xnanosleep.o `test -f 'xnanosleep.c' || echo './'`xnanosleep.c; \
then mv ".deps/xnanosleep.Tpo" ".deps/xnanosleep.Po"; \
else rm -f ".deps/xnanosleep.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xreadlink.o -MD -MP -MF ".deps/xreadlink.Tpo" \
-c -o xreadlink.o `test -f 'xreadlink.c' || echo './'`xreadlink.c; \
then mv ".deps/xreadlink.Tpo" ".deps/xreadlink.Po"; \
else rm -f ".deps/xreadlink.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrdup.o -MD -MP -MF ".deps/xstrdup.Tpo" \
-c -o xstrdup.o `test -f 'xstrdup.c' || echo './'`xstrdup.c; \
then mv ".deps/xstrdup.Tpo" ".deps/xstrdup.Po"; \
else rm -f ".deps/xstrdup.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtod.o -MD -MP -MF ".deps/xstrtod.Tpo" \
-c -o xstrtod.o `test -f 'xstrtod.c' || echo './'`xstrtod.c; \
then mv ".deps/xstrtod.Tpo" ".deps/xstrtod.Po"; \
else rm -f ".deps/xstrtod.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtol.o -MD -MP -MF ".deps/xstrtol.Tpo" \
-c -o xstrtol.o `test -f 'xstrtol.c' || echo './'`xstrtol.c; \
then mv ".deps/xstrtol.Tpo" ".deps/xstrtol.Po"; \
else rm -f ".deps/xstrtol.Tpo"; exit 1; \
fi
xmalloc.c: In function 'xalloc_die':
xmalloc.c:74:3: error: implicit declaration of function 'exit' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit
[command output truncated]
de "xalloc.h"
+++ |+#include <stdlib.h>
39 |
xmalloc.c:74:3: warning: incompatible implicit declaration of built-in function 'exit' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
74 | exit (EXIT_FAILURE);
| ^~~~
xmalloc.c:74:3: note: include '<stdlib.h>' or provide a declaration of 'exit'
savedir.c: In function 'savedir':
savedir.c:100:31: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
100 | size_t entry_size = strlen (entry) + 1;
| ^~~~~~
savedir.c:66:1: note: include '<string.h>' or provide a declaration of 'strlen'
65 | #include <stdlib.h>
+++ |+#include <string.h>
66 |
savedir.c:100:31: warning: incompatible implicit declaration of built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
100 | size_t entry_size = strlen (entry) + 1;
| ^~~~~~
savedir.c:100:31: note: include '<string.h>' or provide a declaration of 'strlen'
savedir.c:115:11: error: implicit declaration of function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | memcpy (name_space + used, entry, entry_size);
| ^~~~~~
savedir.c:115:11: note: include '<string.h>' or provide a declaration of 'memcpy'
savedir.c:115:11: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
savedir.c:115:11: note: include '<string.h>' or provide a declaration of 'memcpy'
make[3]: *** [Makefile:590: xmalloc.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [Makefile:590: savedir.o] Error 1
xstrtol.c: In function 'xstrtol':
xstrtol.c:25:19: error: implicit declaration of function 'strtol'; did you mean 'xstrtol'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
25 | # define __strtol strtol
| ^~~~~~
xstrtol.c:141:9: note: in expansion of macro '__strtol'
141 | tmp = __strtol (s, p, strtol_base);
| ^~~~~~~~
make[3]: *** [Makefile:590: xstrtol.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 92 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT md5.o -MD -MP -MF ".deps/md5.Tpo" \
-c -o md5.o `test -f 'md5.c' || echo './'`md5.c; \
then mv ".deps/md5.Tpo" ".deps/md5.Po"; \
else rm -f ".deps/md5.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT savedir.o -MD -MP -MF ".deps/savedir.Tpo" \
-c -o savedir.o `test -f 'savedir.c' || echo './'`savedir.c; \
then mv ".deps/savedir.Tpo" ".deps/savedir.Po"; \
else rm -f ".deps/savedir.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xmalloc.o -MD -MP -MF ".deps/xmalloc.Tpo" \
-c -o xmalloc.o `test -f 'xmalloc.c' || echo './'`xmalloc.c; \
then mv ".deps/xmalloc.Tpo" ".deps/xmalloc.Po"; \
else rm -f ".deps/xmalloc.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xnanosleep.o -MD -MP -MF ".deps/xnanosleep.Tpo" \
-c -o xnanosleep.o `test -f 'xnanosleep.c' || echo './'`xnanosleep.c; \
then mv ".deps/xnanosleep.Tpo" ".deps/xnanosleep.Po"; \
else rm -f ".deps/xnanosleep.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xreadlink.o -MD -MP -MF ".deps/xreadlink.Tpo" \
-c -o xreadlink.o `test -f 'xreadlink.c' || echo './'`xreadlink.c; \
then mv ".deps/xreadlink.Tpo" ".deps/xreadlink.Po"; \
else rm -f ".deps/xreadlink.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrdup.o -MD -MP -MF ".deps/xstrdup.Tpo" \
-c -o xstrdup.o `test -f 'xstrdup.c' || echo './'`xstrdup.c; \
then mv ".deps/xstrdup.Tpo" ".deps/xstrdup.Po"; \
else rm -f ".deps/xstrdup.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtod.o -MD -MP -MF ".deps/xstrtod.Tpo" \
-c -o xstrtod.o `test -f 'xstrtod.c' || echo './'`xstrtod.c; \
then mv ".deps/xstrtod.Tpo" ".deps/xstrtod.Po"; \
else rm -f ".deps/xstrtod.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtol.o -MD -MP -MF ".deps/xstrtol.Tpo" \
-c -o xstrtol.o `test -f 'xstrtol.c' || echo './'`xstrtol.c; \
then mv ".deps/xstrtol.Tpo" ".deps/xstrtol.Po"; \
else rm -f ".deps/xstrtol.Tpo"; exit 1; \
fi
xmalloc.c: In function 'xalloc_die':
xmalloc.c:74:3: error: implicit declaration of function 'exit' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit
[command output truncated]
de "xalloc.h"
+++ |+#include <stdlib.h>
39 |
xmalloc.c:74:3: warning: incompatible implicit declaration of built-in function 'exit' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
74 | exit (EXIT_FAILURE);
| ^~~~
xmalloc.c:74:3: note: include '<stdlib.h>' or provide a declaration of 'exit'
savedir.c: In function 'savedir':
savedir.c:100:31: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
100 | size_t entry_size = strlen (entry) + 1;
| ^~~~~~
savedir.c:66:1: note: include '<string.h>' or provide a declaration of 'strlen'
65 | #include <stdlib.h>
+++ |+#include <string.h>
66 |
savedir.c:100:31: warning: incompatible implicit declaration of built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
100 | size_t entry_size = strlen (entry) + 1;
| ^~~~~~
savedir.c:100:31: note: include '<string.h>' or provide a declaration of 'strlen'
savedir.c:115:11: error: implicit declaration of function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | memcpy (name_space + used, entry, entry_size);
| ^~~~~~
savedir.c:115:11: note: include '<string.h>' or provide a declaration of 'memcpy'
savedir.c:115:11: warning: incompatible implicit declaration of built-in function 'memcpy' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
savedir.c:115:11: note: include '<string.h>' or provide a declaration of 'memcpy'
make[3]: *** [Makefile:590: xmalloc.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [Makefile:590: savedir.o] Error 1
xstrtol.c: In function 'xstrtol':
xstrtol.c:25:19: error: implicit declaration of function 'strtol'; did you mean 'xstrtol'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
25 | # define __strtol strtol
| ^~~~~~
xstrtol.c:141:9: note: in expansion of macro '__strtol'
141 | tmp = __strtol (s, p, strtol_base);
| ^~~~~~~~
make[3]: *** [Makefile:590: xstrtol.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "xalloc.h"/#include "xalloc.h"\n#include <stdlib.h>/' lib/xmalloc.c && sed -i 's/^#include <stdlib.h>/#include <stdlib.h>\n#include <string.h>/' lib/savedir.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT savedir.o -MD -MP -MF ".deps/savedir.Tpo" \
-c -o savedir.o `test -f 'savedir.c' || echo './'`savedir.c; \
then mv ".deps/savedir.Tpo" ".deps/savedir.Po"; \
else rm -f ".deps/savedir.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xmalloc.o -MD -MP -MF ".deps/xmalloc.Tpo" \
-c -o xmalloc.o `test -f 'xmalloc.c' || echo './'`xmalloc.c; \
then mv ".deps/xmalloc.Tpo" ".deps/xmalloc.Po"; \
else rm -f ".deps/xmalloc.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtol.o -MD -MP -MF ".deps/xstrtol.Tpo" \
-c -o xstrtol.o `test -f 'xstrtol.c' || echo './'`xstrtol.c; \
then mv ".deps/xstrtol.Tpo" ".deps/xstrtol.Po"; \
else rm -f ".deps/xstrtol.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtoul.o -MD -MP -MF ".deps/xstrtoul.Tpo" \
-c -o xstrtoul.o `test -f 'xstrtoul.c' || echo './'`xstrtoul.c; \
then mv ".deps/xstrtoul.Tpo" ".deps/xstrtoul.Po"; \
else rm -f ".deps/xstrtoul.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtoimax.o -MD -MP -MF ".deps/xstrtoimax.Tpo" \
-c -o xstrtoimax.o `test -f 'xstrtoimax.c' || echo './'`xstrtoimax.c; \
then mv ".deps/xstrtoimax.Tpo" ".deps/xstrtoimax.Po"; \
else rm -f ".deps/xstrtoimax.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtoumax.o -MD -MP -MF ".deps/xstrtoumax.Tpo" \
-c -o xstrtoumax.o `test -f 'xstrtoumax.c' || echo './'`xstrtoumax.c; \
then mv ".deps/xstrtoumax.Tpo" ".deps/xstrtoumax.Po"; \
else rm -f ".deps/xstrtoumax.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT yesno.o -MD -MP -MF ".deps/yesno.Tpo" \
-c -o yesno.o `test -f 'yesno.c' || echo './'`yesno.c; \
then mv ".deps/yesno.Tpo" ".deps/yesno.Po"; \
else rm -f ".deps/yesno.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT mkdir.o -MD -MP -MF ".deps/mkdir.Tpo" \
-c -o mkdir.o `test -f 'mkdir.c' || echo './'`mkdir.c; \
then mv ".deps/mkdir.Tpo" ".deps/mkdir.Po"; \
else rm -f ".deps/mkdir.Tpo"; exit 1; \
fi
xstrtol.c: In function 'xstrtoul':
xstrtoul.c:1:18: error: implicit declaration of function 'strtoul'; did you mean 'xstrtoul'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
1 | #define __strtol strtoul
| ^~~~~~~
xstrtol.c:141:9: note: in expansion of macro '__strtol'
141 | tmp = __strtol (s, p, strtol_base);
| ^~~~~~~~
xstrtol.c: In function 'xstrtol':
xstrtol.c:25:19: error: implicit declaration of function 'strtol'; did you mean 'xstrtol'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
25 | # define __strtol strtol
| ^~~~~~
xstrtol.c:141:9: note: in expansion of macro '__strtol'
141 | tmp = __strtol (s, p, strtol_base);
| ^~~~~~~~
make[3]: *** [Makefile:590: xstrtol.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [Makefile:590: xstrtoul.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 70 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT savedir.o -MD -MP -MF ".deps/savedir.Tpo" \
-c -o savedir.o `test -f 'savedir.c' || echo './'`savedir.c; \
then mv ".deps/savedir.Tpo" ".deps/savedir.Po"; \
else rm -f ".deps/savedir.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xmalloc.o -MD -MP -MF ".deps/xmalloc.Tpo" \
-c -o xmalloc.o `test -f 'xmalloc.c' || echo './'`xmalloc.c; \
then mv ".deps/xmalloc.Tpo" ".deps/xmalloc.Po"; \
else rm -f ".deps/xmalloc.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtol.o -MD -MP -MF ".deps/xstrtol.Tpo" \
-c -o xstrtol.o `test -f 'xstrtol.c' || echo './'`xstrtol.c; \
then mv ".deps/xstrtol.Tpo" ".deps/xstrtol.Po"; \
else rm -f ".deps/xstrtol.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtoul.o -MD -MP -MF ".deps/xstrtoul.Tpo" \
-c -o xstrtoul.o `test -f 'xstrtoul.c' || echo './'`xstrtoul.c; \
then mv ".deps/xstrtoul.Tpo" ".deps/xstrtoul.Po"; \
else rm -f ".deps/xstrtoul.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtoimax.o -MD -MP -MF ".deps/xstrtoimax.Tpo" \
-c -o xstrtoimax.o `test -f 'xstrtoimax.c' || echo './'`xstrtoimax.c; \
then mv ".deps/xstrtoimax.Tpo" ".deps/xstrtoimax.Po"; \
else rm -f ".deps/xstrtoimax.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtoumax.o -MD -MP -MF ".deps/xstrtoumax.Tpo" \
-c -o xstrtoumax.o `test -f 'xstrtoumax.c' || echo './'`xstrtoumax.c; \
then mv ".deps/xstrtoumax.Tpo" ".deps/xstrtoumax.Po"; \
else rm -f ".deps/xstrtoumax.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT yesno.o -MD -MP -MF ".deps/yesno.Tpo" \
-c -o yesno.o `test -f 'yesno.c' || echo './'`yesno.c; \
then mv ".deps/yesno.Tpo" ".deps/yesno.Po"; \
else rm -f ".deps/yesno.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT mkdir.o -MD -MP -MF ".deps/mkdir.Tpo" \
-c -o mkdir.o `test -f 'mkdir.c' || echo './'`mkdir.c; \
then mv ".deps/mkdir.Tpo" ".deps/mkdir.Po"; \
else rm -f ".deps/mkdir.Tpo"; exit 1; \
fi
xstrtol.c: In function 'xstrtoul':
xstrtoul.c:1:18: error: implicit declaration of function 'strtoul'; did you mean 'xstrtoul'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
1 | #define __strtol strtoul
| ^~~~~~~
xstrtol.c:141:9: note: in expansion of macro '__strtol'
141 | tmp = __strtol (s, p, strtol_base);
| ^~~~~~~~
xstrtol.c: In function 'xstrtol':
xstrtol.c:25:19: error: implicit declaration of function 'strtol'; did you mean 'xstrtol'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
25 | # define __strtol strtol
| ^~~~~~
xstrtol.c:141:9: note: in expansion of macro '__strtol'
141 | tmp = __strtol (s, p, strtol_base);
| ^~~~~~~~
make[3]: *** [Makefile:590: xstrtol.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [Makefile:590: xstrtoul.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "xstrtol.h"/#include "xstrtol.h"\n#include <stdlib.h>/' lib/xstrtol.c lib/xstrtoul.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtol.o -MD -MP -MF ".deps/xstrtol.Tpo" \
-c -o xstrtol.o `test -f 'xstrtol.c' || echo './'`xstrtol.c; \
then mv ".deps/xstrtol.Tpo" ".deps/xstrtol.Po"; \
else rm -f ".deps/xstrtol.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtoul.o -MD -MP -MF ".deps/xstrtoul.Tpo" \
-c -o xstrtoul.o `test -f 'xstrtoul.c' || echo './'`xstrtoul.c; \
then mv ".deps/xstrtoul.Tpo" ".deps/xstrtoul.Po"; \
else rm -f ".deps/xstrtoul.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtoimax.o -MD -MP -MF ".deps/xstrtoimax.Tpo" \
-c -o xstrtoimax.o `test -f 'xstrtoimax.c' || echo './'`xstrtoimax.c; \
then mv ".deps/xstrtoimax.Tpo" ".deps/xstrtoimax.Po"; \
else rm -f ".deps/xstrtoimax.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtoumax.o -MD -MP -MF ".deps/xstrtoumax.Tpo" \
-c -o xstrtoumax.o `test -f 'xstrtoumax.c' || echo './'`xstrtoumax.c; \
then mv ".deps/xstrtoumax.Tpo" ".deps/xstrtoumax.Po"; \
else rm -f ".deps/xstrtoumax.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT memcmp.o -MD -MP -MF ".deps/memcmp.Tpo" \
-c -o memcmp.o `test -f 'memcmp.c' || echo './'`memcmp.c; \
then mv ".deps/memcmp.Tpo" ".deps/memcmp.Po"; \
else rm -f ".deps/memcmp.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT readutmp.o -MD -MP -MF ".deps/readutmp.Tpo" \
-c -o readutmp.o `test -f 'readutmp.c' || echo './'`readutmp.c; \
then mv ".deps/readutmp.Tpo" ".deps/readutmp.Po"; \
else rm -f ".deps/readutmp.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strnlen.o -MD -MP -MF ".deps/strnlen.Tpo" \
-c -o strnlen.o `test -f 'strnlen.c' || echo './'`strnlen.c; \
then mv ".deps/strnlen.Tpo" ".deps/strnlen.Po"; \
else rm -f ".deps/strnlen.Tpo"; exit 1; \
fi
In file included from fnmatch.c:229:
fnmatch_loop.c: In function 'ext_match':
fnmatch_loop.c:1060:23: error: implicit declaration of function 'offsetof' [ttps://gcc.
[command output truncated]
lloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT ftw.o -MD -MP -MF ".deps/ftw.Tpo" \
-c -o ftw.o `test -f 'ftw.c' || echo './'`ftw.c; \
then mv ".deps/ftw.Tpo" ".deps/ftw.Po"; \
else rm -f ".deps/ftw.Tpo"; exit 1; \
fi
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT chown.o -MD -MP -MF ".deps/chown.Tpo" \
-c -o chown.o `test -f 'chown.c' || echo './'`chown.c; \
then mv ".deps/chown.Tpo" ".deps/chown.Po"; \
else rm -f ".deps/chown.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT mktime.o -MD -MP -MF ".deps/mktime.Tpo" \
-c -o mktime.o `test -f 'mktime.c' || echo './'`mktime.c; \
then mv ".deps/mktime.Tpo" ".deps/mktime.Po"; \
else rm -f ".deps/mktime.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT nanosleep.o -MD -MP -MF ".deps/nanosleep.Tpo" \
-c -o nanosleep.o `test -f 'nanosleep.c' || echo './'`nanosleep.c; \
then mv ".deps/nanosleep.Tpo" ".deps/nanosleep.Po"; \
else rm -f ".deps/nanosleep.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT group-member.o -MD -MP -MF ".deps/group-member.Tpo" \
-c -o group-member.o `test -f 'group-member.c' || echo './'`group-member.c; \
then mv ".deps/group-member.Tpo" ".deps/group-member.Po"; \
else rm -f ".deps/group-member.Tpo"; exit 1; \
fi
make[3]: *** [Makefile:590: fnmatch.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 103 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtol.o -MD -MP -MF ".deps/xstrtol.Tpo" \
-c -o xstrtol.o `test -f 'xstrtol.c' || echo './'`xstrtol.c; \
then mv ".deps/xstrtol.Tpo" ".deps/xstrtol.Po"; \
else rm -f ".deps/xstrtol.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtoul.o -MD -MP -MF ".deps/xstrtoul.Tpo" \
-c -o xstrtoul.o `test -f 'xstrtoul.c' || echo './'`xstrtoul.c; \
then mv ".deps/xstrtoul.Tpo" ".deps/xstrtoul.Po"; \
else rm -f ".deps/xstrtoul.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtoimax.o -MD -MP -MF ".deps/xstrtoimax.Tpo" \
-c -o xstrtoimax.o `test -f 'xstrtoimax.c' || echo './'`xstrtoimax.c; \
then mv ".deps/xstrtoimax.Tpo" ".deps/xstrtoimax.Po"; \
else rm -f ".deps/xstrtoimax.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT xstrtoumax.o -MD -MP -MF ".deps/xstrtoumax.Tpo" \
-c -o xstrtoumax.o `test -f 'xstrtoumax.c' || echo './'`xstrtoumax.c; \
then mv ".deps/xstrtoumax.Tpo" ".deps/xstrtoumax.Po"; \
else rm -f ".deps/xstrtoumax.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT memcmp.o -MD -MP -MF ".deps/memcmp.Tpo" \
-c -o memcmp.o `test -f 'memcmp.c' || echo './'`memcmp.c; \
then mv ".deps/memcmp.Tpo" ".deps/memcmp.Po"; \
else rm -f ".deps/memcmp.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT readutmp.o -MD -MP -MF ".deps/readutmp.Tpo" \
-c -o readutmp.o `test -f 'readutmp.c' || echo './'`readutmp.c; \
then mv ".deps/readutmp.Tpo" ".deps/readutmp.Po"; \
else rm -f ".deps/readutmp.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strnlen.o -MD -MP -MF ".deps/strnlen.Tpo" \
-c -o strnlen.o `test -f 'strnlen.c' || echo './'`strnlen.c; \
then mv ".deps/strnlen.Tpo" ".deps/strnlen.Po"; \
else rm -f ".deps/strnlen.Tpo"; exit 1; \
fi
In file included from fnmatch.c:229:
fnmatch_loop.c: In function 'ext_match':
fnmatch_loop.c:1060:23: error: implicit declaration of function 'offsetof' [ttps://gcc.
[command output truncated]
lloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT ftw.o -MD -MP -MF ".deps/ftw.Tpo" \
-c -o ftw.o `test -f 'ftw.c' || echo './'`ftw.c; \
then mv ".deps/ftw.Tpo" ".deps/ftw.Po"; \
else rm -f ".deps/ftw.Tpo"; exit 1; \
fi
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT chown.o -MD -MP -MF ".deps/chown.Tpo" \
-c -o chown.o `test -f 'chown.c' || echo './'`chown.c; \
then mv ".deps/chown.Tpo" ".deps/chown.Po"; \
else rm -f ".deps/chown.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT mktime.o -MD -MP -MF ".deps/mktime.Tpo" \
-c -o mktime.o `test -f 'mktime.c' || echo './'`mktime.c; \
then mv ".deps/mktime.Tpo" ".deps/mktime.Po"; \
else rm -f ".deps/mktime.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT nanosleep.o -MD -MP -MF ".deps/nanosleep.Tpo" \
-c -o nanosleep.o `test -f 'nanosleep.c' || echo './'`nanosleep.c; \
then mv ".deps/nanosleep.Tpo" ".deps/nanosleep.Po"; \
else rm -f ".deps/nanosleep.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT group-member.o -MD -MP -MF ".deps/group-member.Tpo" \
-c -o group-member.o `test -f 'group-member.c' || echo './'`group-member.c; \
then mv ".deps/group-member.Tpo" ".deps/group-member.Po"; \
else rm -f ".deps/group-member.Tpo"; exit 1; \
fi
make[3]: *** [Makefile:590: fnmatch.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <config.h>/#include <config.h>\n#include <stddef.h>/' lib/fnmatch.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT putenv.o -MD -MP -MF ".deps/putenv.Tpo" \
-c -o putenv.o `test -f 'putenv.c' || echo './'`putenv.c; \
then mv ".deps/putenv.Tpo" ".deps/putenv.Po"; \
else rm -f ".deps/putenv.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT rename.o -MD -MP -MF ".deps/rename.Tpo" \
-c -o rename.o `test -f 'rename.c' || echo './'`rename.c; \
then mv ".deps/rename.Tpo" ".deps/rename.Po"; \
else rm -f ".deps/rename.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT mkstemp.o -MD -MP -MF ".deps/mkstemp.Tpo" \
-c -o mkstemp.o `test -f 'mkstemp.c' || echo './'`mkstemp.c; \
then mv ".deps/mkstemp.Tpo" ".deps/mkstemp.Po"; \
else rm -f ".deps/mkstemp.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT canonicalize.o -MD -MP -MF ".deps/canonicalize.Tpo" \
-c -o canonicalize.o `test -f 'canonicalize.c' || echo './'`canonicalize.c; \
then mv ".deps/canonicalize.Tpo" ".deps/canonicalize.Po"; \
else rm -f ".deps/canonicalize.Tpo"; exit 1; \
fi
putenv.c:34:7: warning: conflicting types for built-in function 'malloc'; expected 'void *(long unsigned int)' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuilti
[command output truncated]
f built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
253 | len = strlen (tmpl);
| ^~~~~~
tempname.c:253:9: note: include '<string.h>' or provide a declaration of 'strlen'
make[3]: *** [Makefile:590: error.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:229:
fnmatch_loop.c: In function 'ext_match':
fnmatch_loop.c:1060:23: error: implicit declaration of function 'offsetof' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT putenv.o -MD -MP -MF ".deps/putenv.Tpo" \
-c -o putenv.o `test -f 'putenv.c' || echo './'`putenv.c; \
then mv ".deps/putenv.Tpo" ".deps/putenv.Po"; \
else rm -f ".deps/putenv.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT rename.o -MD -MP -MF ".deps/rename.Tpo" \
-c -o rename.o `test -f 'rename.c' || echo './'`rename.c; \
then mv ".deps/rename.Tpo" ".deps/rename.Po"; \
else rm -f ".deps/rename.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT mkstemp.o -MD -MP -MF ".deps/mkstemp.Tpo" \
-c -o mkstemp.o `test -f 'mkstemp.c' || echo './'`mkstemp.c; \
then mv ".deps/mkstemp.Tpo" ".deps/mkstemp.Po"; \
else rm -f ".deps/mkstemp.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT canonicalize.o -MD -MP -MF ".deps/canonicalize.Tpo" \
-c -o canonicalize.o `test -f 'canonicalize.c' || echo './'`canonicalize.c; \
then mv ".deps/canonicalize.Tpo" ".deps/canonicalize.Po"; \
else rm -f ".deps/canonicalize.Tpo"; exit 1; \
fi
putenv.c:34:7: warning: conflicting types for built-in function 'malloc'; expected 'void *(long unsigned int)' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuilti
[command output truncated]
f built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
253 | len = strlen (tmpl);
| ^~~~~~
tempname.c:253:9: note: include '<string.h>' or provide a declaration of 'strlen'
make[3]: *** [Makefile:590: error.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:229:
fnmatch_loop.c: In function 'ext_match':
fnmatch_loop.c:1060:23: error: implicit declaration of function 'offsetof' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <stddef.h>/#include <stddef.h>\n#include <string.h>/' lib/error.c lib/tempname.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT sig2str.o -MD -MP -MF ".deps/sig2str.Tpo" \
-c -o sig2str.o `test -f 'sig2str.c' || echo './'`sig2str.c; \
then mv ".deps/sig2str.Tpo" ".deps/sig2str.Po"; \
else rm -f ".deps/sig2str.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT rpmatch.o -MD -MP -MF ".deps/rpmatch.Tpo" \
-c -o rpmatch.o `test -f 'rpmatch.c' || echo './'`rpmatch.c; \
then mv ".deps/rpmatch.Tpo" ".deps/rpmatch.Po"; \
else rm -f ".deps/rpmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT gettimeofday.o -MD -MP -MF ".deps/gettimeofday.Tpo" \
-c -o gettimeofday.o `test -f 'gettimeofday.c' || echo './'`gettimeofday.c; \
then mv ".deps/gettimeofday.Tpo" ".deps/gettimeofday.Po"; \
else rm -f ".deps/gettimeofday.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 100 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT sig2str.o -MD -MP -MF ".deps/sig2str.Tpo" \
-c -o sig2str.o `test -f 'sig2str.c' || echo './'`sig2str.c; \
then mv ".deps/sig2str.Tpo" ".deps/sig2str.Po"; \
else rm -f ".deps/sig2str.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT rpmatch.o -MD -MP -MF ".deps/rpmatch.Tpo" \
-c -o rpmatch.o `test -f 'rpmatch.c' || echo './'`rpmatch.c; \
then mv ".deps/rpmatch.Tpo" ".deps/rpmatch.Po"; \
else rm -f ".deps/rpmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT gettimeofday.o -MD -MP -MF ".deps/gettimeofday.Tpo" \
-c -o gettimeofday.o `test -f 'gettimeofday.c' || echo './'`gettimeofday.c; \
then mv ".deps/gettimeofday.Tpo" ".deps/gettimeofday.Po"; \
else rm -f ".deps/gettimeofday.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/\(\*\(char \*\) __mempcpy \)/\1mempcpy /' lib/regex.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT obstack.o -MD -MP -MF ".deps/obstack.Tpo" \
-c -o obstack.o `test -f 'obstack.c' || echo './'`obstack.c; \
then mv ".deps/obstack.Tpo" ".deps/obstack.Po"; \
else rm -f ".deps/obstack.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included f
[command output truncated]
^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT obstack.o -MD -MP -MF ".deps/obstack.Tpo" \
-c -o obstack.o `test -f 'obstack.c' || echo './'`obstack.c; \
then mv ".deps/obstack.Tpo" ".deps/obstack.Po"; \
else rm -f ".deps/obstack.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included f
[command output truncated]
^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^char \*strdup ();/#include <string.h>/' lib/strtod.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fsusage.o -MD -MP -MF ".deps/fsusage.Tpo" \
-c -o fsusage.o `test -f 'fsusage.c' || echo './'`fsusage.c; \
then mv ".deps/fsusage.Tpo" ".deps/fsusage.Po"; \
else rm -f ".deps/fsusage.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included f
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
make[3]: *** [Makefile:590: tempname.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fsusage.o -MD -MP -MF ".deps/fsusage.Tpo" \
-c -o fsusage.o `test -f 'fsusage.c' || echo './'`fsusage.c; \
then mv ".deps/fsusage.Tpo" ".deps/fsusage.Po"; \
else rm -f ".deps/fsusage.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included f
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
make[3]: *** [Makefile:590: tempname.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <stddef.h>/#include <stddef.h>\n#include <string.h>/' lib/tempname.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT mountlist.o -MD -MP -MF ".deps/mountlist.Tpo" \
-c -o mountlist.o `test -f 'mountlist.c' || echo './'`mountlist.c; \
then mv ".deps/mountlist.Tpo" ".deps/mountlist.Po"; \
else rm -f ".deps/mountlist.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT mountlist.o -MD -MP -MF ".deps/mountlist.Tpo" \
-c -o mountlist.o `test -f 'mountlist.c' || echo './'`mountlist.c; \
then mv ".deps/mountlist.Tpo" ".deps/mountlist.Po"; \
else rm -f ".deps/mountlist.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "regex.h"/#include "regex.h"\n#include <string.h>/' lib/regex.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
/bin/sh ./config.charset 'x86_64-unknown-linux-gnu' > t-charset.alias
mv t-charset.alias charset.alias
sed -e '/^#/d' -e 's/@''PACKAGE''@/coreutils/g' ref-add.sin > t-ref-add.sed
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansi
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
make[3]: *** [Makefile:590: tempname.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 101 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
/bin/sh ./config.charset 'x86_64-unknown-linux-gnu' > t-charset.alias
mv t-charset.alias charset.alias
sed -e '/^#/d' -e 's/@''PACKAGE''@/coreutils/g' ref-add.sin > t-ref-add.sed
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansi
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
make[3]: *** [Makefile:590: tempname.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <stddef.h>/#include <stddef.h>\n#include <string.h>/' lib/fnmatch.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
sed -e '/^#/d' -e 's/@''PACKAGE''@/coreutils/g' ref-del.sin > t-ref-del.sed
mv t-ref-del.sed ref-del.sed
strtod.c: In function 'strtod':
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
strtod.c:139:13: error
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
sed -e '/^#/d' -e 's/@''PACKAGE''@/coreutils/g' ref-del.sin > t-ref-del.sed
mv t-ref-del.sed ref-del.sed
strtod.c: In function 'strtod':
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
strtod.c:139:13: error
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <string.h>/#include <string.h>\n#include <unistd.h>/' lib/getgroups.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
g-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
196 | dlen = strlen (dir);
| ^~~~~~
tempname.c:196:10: note: include '<string.h>' or provide a declaration of 'strlen'
tempname.c: In function '__gen_tempname':
tempname.c:253:9: warning: incompatible implicit declaration of built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
253 | len = strlen (tmpl);
| ^~~~~~
tempname.c:253:9: note: include '<string.h>' or provide a declaration of 'strlen'
strtod.c: In function 'strtod':
strtod.c:139:13: error: implicit declaration of function 'strtol'; did you mean 'strtod'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
139 | exp = strtol (s, &end, 10);
| ^~~~~~
| strtod
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 96 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
g-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
196 | dlen = strlen (dir);
| ^~~~~~
tempname.c:196:10: note: include '<string.h>' or provide a declaration of 'strlen'
tempname.c: In function '__gen_tempname':
tempname.c:253:9: warning: incompatible implicit declaration of built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
253 | len = strlen (tmpl);
| ^~~~~~
tempname.c:253:9: note: include '<string.h>' or provide a declaration of 'strlen'
strtod.c: In function 'strtod':
strtod.c:139:13: error: implicit declaration of function 'strtol'; did you mean 'strtod'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
139 | exp = strtol (s, &end, 10);
| ^~~~~~
| strtod
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <string.h>/#include <string.h>\n#include <stdlib.h>/' lib/strtod.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <stdlib.h>/' lib/getgroups.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
error.c: In function 'error_at_line':
error.c:329:18: error
[command output truncated]
^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
error.c: In function 'error_at_line':
error.c:329:18: error
[command output truncated]
^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <string.h>/#include <string.h>\n#include <string.h>\n#include <errno.h>/' lib/error.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
strtod.c: In function 'strtod':
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, F
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 100 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
strtod.c: In function 'strtod':
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, F
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "getline.h"/#include "getline.h"\n#define _GL_USE_STDLIB_ALLOC 1/' lib/getline.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
getgroups.c: In function 'rpl_getgroups':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r stre
[command output truncated]
g-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
196 | dlen = strlen (dir);
| ^~~~~~
tempname.c:196:10: note: include '<string.h>' or provide a declaration of 'strlen'
strtod.c: In function 'strtod':
strtod.c:139:13: error: implicit declaration of function 'strtol'; did you mean 'strtod'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
139 | exp = strtol (s, &end, 10);
| ^~~~~~
| strtod
tempname.c: In function '__gen_tempname':
tempname.c:253:9: warning: incompatible implicit declaration of built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
253 | len = strlen (tmpl);
| ^~~~~~
tempname.c:253:9: note: include '<string.h>' or provide a declaration of 'strlen'
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 96 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
getgroups.c: In function 'rpl_getgroups':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r stre
[command output truncated]
g-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
196 | dlen = strlen (dir);
| ^~~~~~
tempname.c:196:10: note: include '<string.h>' or provide a declaration of 'strlen'
strtod.c: In function 'strtod':
strtod.c:139:13: error: implicit declaration of function 'strtol'; did you mean 'strtod'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
139 | exp = strtol (s, &end, 10);
| ^~~~~~
| strtod
tempname.c: In function '__gen_tempname':
tempname.c:253:9: warning: incompatible implicit declaration of built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
253 | len = strlen (tmpl);
| ^~~~~~
tempname.c:253:9: note: include '<string.h>' or provide a declaration of 'strlen'
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "getline.h"/#include "getline.h"\n#undef getline/' lib/getline.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <string.h>/#include <string.h>\n#include <string.h>\n#include <features.h>/' lib/tempname.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
tempname.c: In function '__path_search':
tempname.c:168:14: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
168 | plen = strlen (pfx);
| ^~~~~~
tempname.c:70:1: note: include '<string.h>' or provide a declaration of 'strlen'
69 | #include <sys/stat.h>
+++ |+#include <string.h>
70 | #if STAT_MACROS_BROKEN
tempname.c:168:14: warning: incompatible implicit declaration of
[command output truncated]
^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
tempname.c: In function '__path_search':
tempname.c:168:14: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
168 | plen = strlen (pfx);
| ^~~~~~
tempname.c:70:1: note: include '<string.h>' or provide a declaration of 'strlen'
69 | #include <sys/stat.h>
+++ |+#include <string.h>
70 | #if STAT_MACROS_BROKEN
tempname.c:168:14: warning: incompatible implicit declaration of
[command output truncated]
^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <features.h>/#include <features.h>\n#include <string.h>/' lib/tempname.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 100 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "getline.h"/#include "getline.h"\n#define _POSIX_C_SOURCE 200809L/' lib/getline.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 100 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "getline.h"/#include "getline.h"\n#undef _POSIX_C_SOURCE\n#define _POSIX_C_SOURCE 200809L/' lib/getline.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
tempname.c: In function '__path_search':
tempname.c:168:14: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
168 | plen = strlen (pfx);
| ^~~~~~
tempname.c:70:1: note: include '<string.h>' or provide a declaration of 'strlen'
69 | #include <sys/stat.h>
+++ |+#include <string.h>
70 | #if STAT_MACROS_BROKEN
tempname.c:168:14: warning: incompatible implicit declaration of
[command output truncated]
^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
tempname.c: In function '__path_search':
tempname.c:168:14: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
168 | plen = strlen (pfx);
| ^~~~~~
tempname.c:70:1: note: include '<string.h>' or provide a declaration of 'strlen'
69 | #include <sys/stat.h>
+++ |+#include <string.h>
70 | #if STAT_MACROS_BROKEN
tempname.c:168:14: warning: incompatible implicit declaration of
[command output truncated]
^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <features.h>/#include <features.h>\n#include <string.h>/' lib/tempname.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
tempname.c: In function '__path_search':
tempname.c:168:14: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
168 | plen = strlen (pfx);
| ^~~~~~
tempname.c:70:1: note: include '<string.h>' or provide a declaration of 'strlen'
69 | #include <sys/stat.h>
+++ |+#include <string.h>
70 | #if STAT_MACROS_BROKEN
tempname.c:168:14: warning: incompatible implicit declaration of
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
tempname.c: In function '__path_search':
tempname.c:168:14: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
168 | plen = strlen (pfx);
| ^~~~~~
tempname.c:70:1: note: include '<string.h>' or provide a declaration of 'strlen'
69 | #include <sys/stat.h>
+++ |+#include <string.h>
70 | #if STAT_MACROS_BROKEN
tempname.c:168:14: warning: incompatible implicit declaration of
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <sys/stat.h>/#include <sys/stat.h>\n#include <string.h>/' lib/tempname.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
6, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from tempname.c:25:
tempname.c:329:11: error: implicit declaration of function '__assert_fail' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
329 | assert (! "invalid KIND in __gen_tempname");
| ^~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 97 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
6, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from tempname.c:25:
tempname.c:329:11: error: implicit declaration of function '__assert_fail' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
329 | assert (! "invalid KIND in __gen_tempname");
| ^~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <assert.h>/' lib/tempname.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
tempname.c:24:5: error: expected '=', ',', ';', 'asm' or '__attribute__' before '.' token
24 | stat.h>/types.h>
| ^
error.c: In function 'print_errno_message':
getgroups.c: In function 'rpl_getgroups':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of m
[command output truncated]
tternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
tempname.c:104:41: error: implicit declaration of function 'lstat' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
104 | # define __lxstat64(version, path, buf) lstat (path, buf)
| ^~~~~
tempname.c:315:15: note: in expansion of macro '__lxstat64'
315 | if (__lxstat64 (_STAT_VER, tmpl, &st) < 0)
| ^~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
In file included from tempname.c:25:
tempname.c:329:11: error: implicit declaration of function '__assert_fail' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
329 | assert (! "invalid KIND in __gen_tempname");
| ^~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 98 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
tempname.c:24:5: error: expected '=', ',', ';', 'asm' or '__attribute__' before '.' token
24 | stat.h>/types.h>
| ^
error.c: In function 'print_errno_message':
getgroups.c: In function 'rpl_getgroups':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of m
[command output truncated]
tternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
tempname.c:104:41: error: implicit declaration of function 'lstat' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
104 | # define __lxstat64(version, path, buf) lstat (path, buf)
| ^~~~~
tempname.c:315:15: note: in expansion of macro '__lxstat64'
315 | if (__lxstat64 (_STAT_VER, tmpl, &st) < 0)
| ^~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
In file included from tempname.c:25:
tempname.c:329:11: error: implicit declaration of function '__assert_fail' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
329 | assert (! "invalid KIND in __gen_tempname");
| ^~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^stat\.h>\/types\.h>$/#include <sys\/stat.h>/' lib/tempname.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
regex.c:140:7: error: conflicting types for 'malloc'; have 'char *()'
140 | char *malloc ();
| ^~~~~~
In file included from /usr/include/fortify/wchar.h:27,
from regex.c:58:
/usr/include/stdlib.h:40:7: note: previous declaration of 'malloc' with type 'void *(long unsigned int)'
40 | void *malloc (size_t);
| ^~~~~~
regex.c:141:7: error: conflicting types for 'realloc'; have 'char *()'
141 | char *realloc ();
| ^~~~~~~
/usr/include/stdlib.h:42:7: note: previous declaration of 'reallo
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 105 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
regex.c:140:7: error: conflicting types for 'malloc'; have 'char *()'
140 | char *malloc ();
| ^~~~~~
In file included from /usr/include/fortify/wchar.h:27,
from regex.c:58:
/usr/include/stdlib.h:40:7: note: previous declaration of 'malloc' with type 'void *(long unsigned int)'
40 | void *malloc (size_t);
| ^~~~~~
regex.c:141:7: error: conflicting types for 'realloc'; have 'char *()'
141 | char *realloc ();
| ^~~~~~~
/usr/include/stdlib.h:42:7: note: previous declaration of 'reallo
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^char \*malloc ();\nchar \*realloc ();/#include <stdlib.h>/' lib/regex.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
getgroups.c: In function 'rpl_getgroups':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r stre
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 100 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
getgroups.c: In function 'rpl_getgroups':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r stre
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/\*\(char \*\) __mempcpy/mempcpy/' lib/regex.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
tempname.c:69:5: error: expected '=', ',', ';', 'asm' or '__attribute__' before '.' token
69 | stat.h>/stat.h>
| ^
tempname.c: In function '__path_search':
tempname.c:168:14: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
168 | plen = strlen (pfx);
| ^~~~~~
tempname.c:67:1: note: include '<string.h>' or provide a declaration of 'strlen'
66 | # include <unistd
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
tempname.c:69:5: error: expected '=', ',', ';', 'asm' or '__attribute__' before '.' token
69 | stat.h>/stat.h>
| ^
tempname.c: In function '__path_search':
tempname.c:168:14: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
168 | plen = strlen (pfx);
| ^~~~~~
tempname.c:67:1: note: include '<string.h>' or provide a declaration of 'strlen'
66 | # include <unistd
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^stat\.h>\/stat\.h>$/#include <sys\/stat.h>/' lib/tempname.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
strtod.c: In function 'strtod':
strtod.c:139:13: error: imp
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
strtod.c: In function 'strtod':
strtod.c:139:13: error: imp
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <string.h>/#include <string.h>\n#include <string.h>\n#include <errno.h>/' lib/error.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
strtod.c: In function 'strtod':
strtod.c:139:13: error: imp
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
strtod.c: In function 'strtod':
strtod.c:139:13: error: imp
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/\*\(char \*\) __mempcpy/mempcpy/g' lib/regex.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
regex.c:140:7: error: conflicting types for 'malloc'; have 'char *()'
140 | char *malloc ();
| ^~~~~~
In file included from /usr/include/fortify/wchar.h:27,
from regex.c:58:
/usr/include/stdlib.h:40:7: note: previous declaration of 'malloc' with type 'void *(long unsigned int)'
40 | void *malloc (size_t);
| ^~~~~~
regex.c:141:7: error: conflicting types for 'realloc'; have 'char *()'
141 | char *realloc ();
| ^~~~~~~
/usr/include/stdlib.h:42:7: note: previous declaration of 'reallo
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 105 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
regex.c:140:7: error: conflicting types for 'malloc'; have 'char *()'
140 | char *malloc ();
| ^~~~~~
In file included from /usr/include/fortify/wchar.h:27,
from regex.c:58:
/usr/include/stdlib.h:40:7: note: previous declaration of 'malloc' with type 'void *(long unsigned int)'
40 | void *malloc (size_t);
| ^~~~~~
regex.c:141:7: error: conflicting types for 'realloc'; have 'char *()'
141 | char *realloc ();
| ^~~~~~~
/usr/include/stdlib.h:42:7: note: previous declaration of 'reallo
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^char \*malloc ();\nchar \*realloc ();/#include <stdlib.h>/' lib/regex.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <stdlib.h>/' lib/getgroups.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 100 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "getline.h"/#include "getline.h"\n#undef _POSIX_C_SOURCE\n#define _POSIX_C_SOURCE 200809L/' lib/getline.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <stdlib.h>/' lib/getgroups.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
error.c: In function 'print_errno_message':
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long
[command output truncated]
g-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
196 | dlen = strlen (dir);
| ^~~~~~
tempname.c:196:10: note: include '<string.h>' or provide a declaration of 'strlen'
tempname.c: In function '__gen_tempname':
tempname.c:253:9: warning: incompatible implicit declaration of built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
253 | len = strlen (tmpl);
| ^~~~~~
tempname.c:253:9: note: include '<string.h>' or provide a declaration of 'strlen'
strtod.c: In function 'strtod':
strtod.c:139:13: error: implicit declaration of function 'strtol'; did you mean 'strtod'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
139 | exp = strtol (s, &end, 10);
| ^~~~~~
| strtod
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 96 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
error.c: In function 'print_errno_message':
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long
[command output truncated]
g-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
196 | dlen = strlen (dir);
| ^~~~~~
tempname.c:196:10: note: include '<string.h>' or provide a declaration of 'strlen'
tempname.c: In function '__gen_tempname':
tempname.c:253:9: warning: incompatible implicit declaration of built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
253 | len = strlen (tmpl);
| ^~~~~~
tempname.c:253:9: note: include '<string.h>' or provide a declaration of 'strlen'
strtod.c: In function 'strtod':
strtod.c:139:13: error: implicit declaration of function 'strtol'; did you mean 'strtod'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
139 | exp = strtol (s, &end, 10);
| ^~~~~~
| strtod
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <string.h>/#include <string.h>\n#include <stdlib.h>/' lib/strtod.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 100 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "getline.h"/#include "getline.h"\n#undef getline/' lib/getline.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
tempname.c: In function '__path_search':
tempname.c:168:14: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
168 | plen = strlen (pfx);
| ^~~~~~
tempname.c:67:1: note: include '<string.h>' or provide a declaration of 'strlen'
66 | # include <unistd.h>
+++ |+#include <string.h>
67 | #endif
tempname.c:168:14: warning: incompatible implicit declaration of built-in functio
[command output truncated]
^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
tempname.c: In function '__path_search':
tempname.c:168:14: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
168 | plen = strlen (pfx);
| ^~~~~~
tempname.c:67:1: note: include '<string.h>' or provide a declaration of 'strlen'
66 | # include <unistd.h>
+++ |+#include <string.h>
67 | #endif
tempname.c:168:14: warning: incompatible implicit declaration of built-in functio
[command output truncated]
^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <string.h>/' lib/tempname.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <string.h>/#include <string.h>\n#include <string.h>\n#include <errno.h>/' lib/error.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <stdlib.h>/' lib/getgroups.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <stdlib.h>\n#include <grp.h>/' lib/getgroups.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
error.c: In function 'error_at_line':
error.c:329:18: error
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
error.c: In function 'error_at_line':
error.c:329:18: error
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <string.h>/#include <string.h>\n#include <string.h>\n#include <errno.h>/' lib/error.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
getgroups.c: In function 'rpl_getgroups':
strtod.c: In func
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
getgroups.c: In function 'rpl_getgroups':
strtod.c: In func
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <string.h>/' lib/tempname.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
error.c: In function 'error_at_line':
error.c:329:18: error
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
error.c: In function 'error_at_line':
error.c:329:18: error
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <string.h>/#include <string.h>\n#include <string.h>\n#include <errno.h>/' lib/error.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <stdlib.h>/' lib/getgroups.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 100 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "getline.h"/#include "getline.h"\n#undef getline/' lib/getline.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <stdlib.h>\n#include <grp.h>/' lib/getgroups.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
make[3]: *** [Makefile:590: tempname.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 100 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
make[3]: *** [Makefile:590: tempname.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "getline.h"/#include "getline.h"\n#undef getline/' lib/getline.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
make[3]: *** [Makefile:590: strtod.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
make[3]: *** [Makefile:590: strtod.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <stdlib.h>/' lib/getgroups.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <stdlib.h>\n#include <grp.h>/' lib/getgroups.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <stdlib.h>/' lib/getgroups.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 100 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "getline.h"/#include "getline.h"\n#undef getline/' lib/getline.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
g-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
196 | dlen = strlen (dir);
| ^~~~~~
tempname.c:196:10: note: include '<string.h>' or provide a declaration of 'strlen'
tempname.c: In function '__gen_tempname':
tempname.c:253:9: warning: incompatible implicit declaration of built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
253 | len = strlen (tmpl);
| ^~~~~~
tempname.c:253:9: note: include '<string.h>' or provide a declaration of 'strlen'
strtod.c: In function 'strtod':
strtod.c:139:13: error: implicit declaration of function 'strtol'; did you mean 'strtod'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
139 | exp = strtol (s, &end, 10);
| ^~~~~~
| strtod
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 95 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
g-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
196 | dlen = strlen (dir);
| ^~~~~~
tempname.c:196:10: note: include '<string.h>' or provide a declaration of 'strlen'
tempname.c: In function '__gen_tempname':
tempname.c:253:9: warning: incompatible implicit declaration of built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
253 | len = strlen (tmpl);
| ^~~~~~
tempname.c:253:9: note: include '<string.h>' or provide a declaration of 'strlen'
strtod.c: In function 'strtod':
strtod.c:139:13: error: implicit declaration of function 'strtol'; did you mean 'strtod'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
139 | exp = strtol (s, &end, 10);
| ^~~~~~
| strtod
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <string.h>/#include <string.h>\n#include <stdlib.h>/' lib/strtod.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12
[command output truncated]
atch-Wbuiltin-declaration-mismatch]8;;]
196 | dlen = strlen (dir);
| ^~~~~~
make[3]: *** [Makefile:590: error.o] Error 1
tempname.c:196:10: note: include '<string.h>' or provide a declaration of 'strlen'
tempname.c: In function '__gen_tempname':
tempname.c:253:9: warning: incompatible implicit declaration of built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
253 | len = strlen (tmpl);
| ^~~~~~
tempname.c:253:9: note: include '<string.h>' or provide a declaration of 'strlen'
strtod.c: In function 'strtod':
strtod.c:139:13: error: implicit declaration of function 'strtol'; did you mean 'strtod'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
139 | exp = strtol (s, &end, 10);
| ^~~~~~
| strtod
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12
[command output truncated]
atch-Wbuiltin-declaration-mismatch]8;;]
196 | dlen = strlen (dir);
| ^~~~~~
make[3]: *** [Makefile:590: error.o] Error 1
tempname.c:196:10: note: include '<string.h>' or provide a declaration of 'strlen'
tempname.c: In function '__gen_tempname':
tempname.c:253:9: warning: incompatible implicit declaration of built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
253 | len = strlen (tmpl);
| ^~~~~~
tempname.c:253:9: note: include '<string.h>' or provide a declaration of 'strlen'
strtod.c: In function 'strtod':
strtod.c:139:13: error: implicit declaration of function 'strtol'; did you mean 'strtod'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
139 | exp = strtol (s, &end, 10);
| ^~~~~~
| strtod
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <string.h>/#include <string.h>\n#include <string.h>\n#include <errno.h>/' lib/error.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <stdlib.h>/' lib/getgroups.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
error.c: In function 'error_at_line':
error.c:329:18: error
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
error.c: In function 'error_at_line':
error.c:329:18: error
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <string.h>/#include <string.h>\n#include <string.h>\n#include <errno.h>/' lib/error.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <stdlib.h>\n#include <grp.h>/' lib/getgroups.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <stdlib.h>/' lib/getgroups.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12
[command output truncated]
~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <string.h>/#include <string.h>\n#include <string.h>\n#include <errno.h>/' lib/error.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
regex.c:140:7: error: conflicting types for 'malloc'; have 'char *()'
140 | char *malloc ();
| ^~~~~~
In file included from /usr/include/fortify/wchar.h:27,
from regex.c:58:
/usr/include/stdlib.h:40:7: note: previous declaration of 'malloc' with type 'void *(long unsigned int)'
40 | void *malloc (size_t);
| ^~~~~~
regex.c:141:7: error: conflicting types for 'realloc'; have 'char *()'
141 | char *realloc ();
| ^~~~~~~
/usr/include/stdlib.h:42:7: note: previous declaration of 'reallo
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 105 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
regex.c:140:7: error: conflicting types for 'malloc'; have 'char *()'
140 | char *malloc ();
| ^~~~~~
In file included from /usr/include/fortify/wchar.h:27,
from regex.c:58:
/usr/include/stdlib.h:40:7: note: previous declaration of 'malloc' with type 'void *(long unsigned int)'
40 | void *malloc (size_t);
| ^~~~~~
regex.c:141:7: error: conflicting types for 'realloc'; have 'char *()'
141 | char *realloc ();
| ^~~~~~~
/usr/include/stdlib.h:42:7: note: previous declaration of 'reallo
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^char \*malloc ();\nchar \*realloc ();/#include <stdlib.h>/' lib/regex.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
tempname.c: In function '__path_search':
tempname.c:168:14: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
168 | plen = strlen (pfx);
| ^~~~~~
tempname.c:67:1: note: include '<string.h>' or provide a declaration of 'strlen'
66 | # include <unistd.h>
+++ |+#include <string.h>
67 | #endif
tempname.c:168:14: warning: incompatible implicit declaration of built-in functio
[command output truncated]
^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
tempname.c: In function '__path_search':
tempname.c:168:14: error: implicit declaration of function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
168 | plen = strlen (pfx);
| ^~~~~~
tempname.c:67:1: note: include '<string.h>' or provide a declaration of 'strlen'
66 | # include <unistd.h>
+++ |+#include <string.h>
67 | #endif
tempname.c:168:14: warning: incompatible implicit declaration of built-in functio
[command output truncated]
^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <string.h>/' lib/tempname.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
error.c: In function 'error_at_line':
error.c:329:18: error
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
error.c: In function 'error_at_line':
error.c:329:18: error
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <string.h>/#include <string.h>\n#include <string.h>\n#include <errno.h>/' lib/error.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
make[3]: *** [Makefile:590: strtod.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
make[3]: *** [Makefile:590: strtod.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <stdlib.h>/' lib/getgroups.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
ion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <string.h>/' lib/tempname.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
[command output truncated]
function-declaration]8;;]
187 | else if (strcmp (P_tmpdir, "/tmp") != 0 && direxists ("/tmp"))
| ^~~~~~
tempname.c:187:16: note: include '<string.h>' or provide a declaration of 'strcmp'
tempname.c:196:10: warning: incompatible implicit declaration of built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
196 | dlen = strlen (dir);
| ^~~~~~
tempname.c:196:10: note: include '<string.h>' or provide a declaration of 'strlen'
tempname.c: In function '__gen_tempname':
tempname.c:253:9: warning: incompatible implicit declaration of built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
253 | len = strlen (tmpl);
| ^~~~~~
tempname.c:253:9: note: include '<string.h>' or provide a declaration of 'strlen'
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 95 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
[command output truncated]
function-declaration]8;;]
187 | else if (strcmp (P_tmpdir, "/tmp") != 0 && direxists ("/tmp"))
| ^~~~~~
tempname.c:187:16: note: include '<string.h>' or provide a declaration of 'strcmp'
tempname.c:196:10: warning: incompatible implicit declaration of built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
196 | dlen = strlen (dir);
| ^~~~~~
tempname.c:196:10: note: include '<string.h>' or provide a declaration of 'strlen'
tempname.c: In function '__gen_tempname':
tempname.c:253:9: warning: incompatible implicit declaration of built-in function 'strlen' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wbuiltin-declaration-mismatch-Wbuiltin-declaration-mismatch]8;;]
253 | len = strlen (tmpl);
| ^~~~~~
tempname.c:253:9: note: include '<string.h>' or provide a declaration of 'strlen'
make[3]: *** [Makefile:590: strtod.o] Error 1
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: tempname.o] Error 1
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include "getline.h"/#include "getline.h"\n#undef getline/' lib/getline.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 99 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getgroups.c: In function 'rpl_getgroups':
getgroups.c:40:12: error: implicit declaration of function 'getgroups'; did you mean 'rpl_getgroups'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
40 | return getgroups (n, group);
| ^~~~~~~~~
| rpl_getgroups
getgroups.c:53:3: error: implicit declaration of function 'free' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-decla
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <unistd.h>/#include <unistd.h>\n#include <stdlib.h>\n#include <grp.h>/' lib/getgroups.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
error.c: In function 'error_at_line':
error.c:329:18: error
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 102 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
error.c: In function 'print_errno_message':
error.c:115:24: error: implicit declaration of function 'strerror_r' [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
115 | # define __strerror_r strerror_r
| ^~~~~~~~~~
error.c:150:7: note: in expansion of macro '__strerror_r'
150 | if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)
| ^~~~~~~~~~~~
error.c: In function 'error_at_line':
error.c:329:18: error
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
compile-bench> cd coreutils-5.0 && sed -i 's/^#include <string.h>/#include <string.h>\n#include <string.h>\n#include <errno.h>/' lib/error.c && make -j$(nproc) make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
↓ 100 lines
make all-recursive
make[1]: Entering directory '/home/peter/coreutils-5.0'
Making all in lib
make[2]: Entering directory '/home/peter/coreutils-5.0/lib'
make all-am
make[3]: Entering directory '/home/peter/coreutils-5.0/lib'
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT fnmatch.o -MD -MP -MF ".deps/fnmatch.Tpo" \
-c -o fnmatch.o `test -f 'fnmatch.c' || echo './'`fnmatch.c; \
then mv ".deps/fnmatch.Tpo" ".deps/fnmatch.Po"; \
else rm -f ".deps/fnmatch.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT error.o -MD -MP -MF ".deps/error.Tpo" \
-c -o error.o `test -f 'error.c' || echo './'`error.c; \
then mv ".deps/error.Tpo" ".deps/error.Po"; \
else rm -f ".deps/error.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getgroups.o -MD -MP -MF ".deps/getgroups.Tpo" \
-c -o getgroups.o `test -f 'getgroups.c' || echo './'`getgroups.c; \
then mv ".deps/getgroups.Tpo" ".deps/getgroups.Po"; \
else rm -f ".deps/getgroups.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT tempname.o -MD -MP -MF ".deps/tempname.Tpo" \
-c -o tempname.o `test -f 'tempname.c' || echo './'`tempname.c; \
then mv ".deps/tempname.Tpo" ".deps/tempname.Po"; \
else rm -f ".deps/tempname.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT regex.o -MD -MP -MF ".deps/regex.Tpo" \
-c -o regex.o `test -f 'regex.c' || echo './'`regex.c; \
then mv ".deps/regex.Tpo" ".deps/regex.Po"; \
else rm -f ".deps/regex.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT getline.o -MD -MP -MF ".deps/getline.Tpo" \
-c -o getline.o `test -f 'getline.c' || echo './'`getline.c; \
then mv ".deps/getline.Tpo" ".deps/getline.Po"; \
else rm -f ".deps/getline.Tpo"; exit 1; \
fi
if gcc -DLIBDIR=\"/home/peter/result/lib\" -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -include sys/types.h -MT strtod.o -MD -MP -MF ".deps/strtod.Tpo" \
-c -o strtod.o `test -f 'strtod.c' || echo './'`strtod.c; \
then mv ".deps/strtod.Tpo" ".deps/strtod.Po"; \
else rm -f ".deps/strtod.Tpo"; exit 1; \
fi
getline.c:47:1: error: conflicting types for 'getline'; have 'int(char **, size_t *, FILE *)' {aka 'int(char **, long unsigned int *, FILE *)'}
47 | getline (char **lineptr, size_t *n, FILE *stream)
| ^~~~~~~
In file included from /usr/include/fortify/stdio.h:23,
from getline.c:31:
/usr/include/stdio.h:155:9: note: previous declaration of 'getline' with type 'ssize_t(char ** restrict, size_t * restrict, FILE * restrict)' {aka 'long int(char ** restrict, long unsigned int * restrict, FILE * restrict)'}
155 | ssize_
[command output truncated]
\
| ^~~~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1:1: note: 'offsetof' is defined in header '<stddef.h>'; this is probably fixable by adding '#include <stddef.h>'
+++ |+#include <stddef.h>
1 | /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001,
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
In file included from fnmatch.c:326:
fnmatch_loop.c: In function 'ext_wmatch':
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1066:13: note: in expansion of macro 'NEW_PATTERN'
1066 | NEW_PATTERN;
| ^~~~~~~~~~~
fnmatch_loop.c:1060:33: error: expected expression before 'struct'
1060 | alloca (offsetof (struct patternlist, str) \
| ^~~~~~
fnmatch_loop.c:1073:13: note: in expansion of macro 'NEW_PATTERN'
1073 | NEW_PATTERN;
| ^~~~~~~~~~~
make[3]: *** [Makefile:590: fnmatch.o] Error 1
regex.c: In function 'regerror':
regex.c:8319:22: error: implicit declaration of function '__mempcpy'; did you mean 'mempcpy'? [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^~~~~~~~~
| mempcpy
regex.c:8319:13: warning: cast to pointer from integer of different size [ttps://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wint-to-pointer-cast-Wint-to-pointer-cast]8;;]
8319 | *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
| ^
make[3]: *** [Makefile:590: regex.o] Error 1
make[3]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[2]: *** [Makefile:414: all] Error 2
make[2]: Leaving directory '/home/peter/coreutils-5.0/lib'
make[1]: *** [Makefile:244: all-recursive] Error 1
make[1]: Leaving directory '/home/peter/coreutils-5.0'
make: *** [Makefile:199: all] Error 2
exceeded max cost dollars (max=$10.00, current=10.25)