Re: libgcov-driver-system bootstrap failure

2018-06-06 Thread Martin Liška
On 06/06/2018 03:25 PM, David Edelsohn wrote: > Thanks for both patches. GCC bootstrap on AIX is progressing much > better with the patches installed. > > Thanks, David Thanks David for testing, I've just installed both patches. Martin

Re: libgcov-driver-system bootstrap failure

2018-06-06 Thread Eric Gallager
On 6/5/18, David Edelsohn wrote: > Martin, > > With your recent patch, I receive the following failure building > libgcov-driver-system.c > > In file included from > /nasfarm/edelsohn/src/src/gcc/../libgcc/libgcov-driver.c:322:0: > /nasfarm/edelsohn/src/src/gcc/../libgcc/libgcov-driver-system.c: I

Re: libgcov-driver-system bootstrap failure

2018-06-06 Thread David Edelsohn
Hi, Martin Thanks for both patches. GCC bootstrap on AIX is progressing much better with the patches installed. Thanks, David On Wed, Jun 6, 2018 at 5:05 AM Martin Liška wrote: > > On 06/06/2018 03:09 AM, David Edelsohn wrote: > > Also, there seems to be a find-and-replace mistake in libgcov-d

Re: libgcov-driver-system bootstrap failure

2018-06-06 Thread Martin Liška
On 06/06/2018 03:09 AM, David Edelsohn wrote: > Also, there seems to be a find-and-replace mistake in libgcov-driver.c > > #if !GCOV_LOCKED > /* summary for all instances of program. */ > struct gcov_summary *cs_all; > #endif > > cs_all is declared within the !GCOV_LOCKED macro > > but late

Re: libgcov-driver-system bootstrap failure

2018-06-06 Thread Martin Liška
On 06/06/2018 02:28 AM, David Edelsohn wrote: > Martin, > > With your recent patch, I receive the following failure building > libgcov-driver-system.c > > In file included from > /nasfarm/edelsohn/src/src/gcc/../libgcc/libgcov-driver.c:322:0: > /nasfarm/edelsohn/src/src/gcc/../libgcc/libgcov-driv

Re: libgcov-driver-system bootstrap failure

2018-06-05 Thread David Edelsohn
Also, there seems to be a find-and-replace mistake in libgcov-driver.c #if !GCOV_LOCKED /* summary for all instances of program. */ struct gcov_summary *cs_all; #endif cs_all is declared within the !GCOV_LOCKED macro but later all references have been changed to "all", not "cs_all" #if !GC