binutils runtest $CC
authorAlan Modra <amodra@gmail.com>
Wed, 26 Apr 2023 00:29:40 +0000 (09:59 +0930)
committerAlan Modra <amodra@gmail.com>
Wed, 26 Apr 2023 01:02:07 +0000 (10:32 +0930)
commit4a8635cbecbd4eefa6dafdc4510014ad1755ddc3
treed8c98a8c902c8bd843b7cf8cf289a07918cf5505
parent5b429b870767e2107bcc7d5d849e04d6901b5912
binutils runtest $CC

I noticed in the binutile Makefile that runtest is being invoked with
CC, CC_FOR_BUILD and other compiler related flags in the environment.
That doesn't work.  Those variables ought to be passed on the runtest
command line.

After fixing that I had some fails due to binutils testprog.c now
being compiled with the default "-g -O2" picked up in
CFLAGS_FOR_TARGET.  Hack around that by passing -O0.

Also, with the binutils testsuite now taking notice of CC_FOR_TARGET,
I found a couple of debuginfod.exp fails with one of my compilers that
happened to be built without --debug-id being enabled by default.

* Makefile.am (check-DEJAGNU): Pass $CC and other variable on
the runtest command line rather than futilely in the
environment.  Add -O0 to CFLAGS_FOR_TARGET.
* Makefile.in: Regenerate.
* testsuite/binutils-all/debuginfod.exp: Compile testprog.c
with -Wl,--build-id.
binutils/Makefile.am
binutils/Makefile.in
binutils/testsuite/binutils-all/debuginfod.exp