Re: [Ada] Adjust ACATS testing

2016-04-30 Thread H.J. Lu
On Sat, Apr 30, 2016 at 10:21 AM, Eric Botcazou wrote: >> Does this fix >> >> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=14435 > > Surprisingly yes according to 'strace' because of this change: > > target_gnatchop () { > - gnatchop --GCC="$GCC_DRIVER" $* > + $BASE/gnatchop --GCC="$BASE/xgcc"

Re: [Ada] Adjust ACATS testing

2016-04-30 Thread Eric Botcazou
> Does this fix > > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=14435 Surprisingly yes according to 'strace' because of this change: target_gnatchop () { - gnatchop --GCC="$GCC_DRIVER" $* + $BASE/gnatchop --GCC="$BASE/xgcc" $* } and the following trick implemented in gnatchop: -- Add

Re: [Ada] Adjust ACATS testing

2016-04-30 Thread H.J. Lu
On Sat, Apr 30, 2016 at 3:42 AM, Eric Botcazou wrote: > Unlike the gnat.dg testsuite, the ACATS testsuite doesn't use the newly built > gnatmake/gnatbind/gnatlink tools, which is rather inconsistent. > > Fixed thusly, tested on x86_64-suse-linux, applied on the mainline. > > > 2016-04-30 Eric Bot