Re: [patch ada]: Fix PR/50942

2012-02-09 Thread Arnaud Charlet
> nevertheless on Darwin (with GNU make 3.81) we get .. > > rm -rf adalib > ln -s ../.././gcc/ada/rts adainclude > ln -s ../.././gcc/ada/rts adalib Ah, this comes from libada/Makefile.in and is actually "expected", even though it's a bit kludgy IMO. This was introduced by revision 145622 to handl

Re: [patch ada]: Fix PR/50942

2012-02-09 Thread Iain Sandoe
On 9 Feb 2012, at 19:59, Arnaud Charlet wrote: The bug is as described in the bug-report: Failure on Stage 3 when a make script try to execute following command: cp -p ../.././gcc/ada/rts adainclude We should never have such a command emitted by make, so the error is elsewhere/earlier. I

Re: [patch ada]: Fix PR/50942

2012-02-09 Thread Arnaud Charlet
> Hmm, I interpret 'ifeq ($(strip $(filter-out alpha64 ia64 dec hp vms% > openvms% alphavms%,$(host))),)' as anthing not mentioned here. That's a misunderstanding as explained by Dave Korn. > The bug is as described in the bug-report: > > Failure on Stage 3 when a make script try to execute foll

Re: [patch ada]: Fix PR/50942

2012-02-09 Thread Dave Korn
On 09/02/2012 18:55, Kai Tietz wrote: > Hmm, I interpret 'ifeq ($(strip $(filter-out alpha64 ia64 dec hp vms% > openvms% alphavms%,$(host))),)' as anthing not mentioned here. "If, after removing alpha64 ia64 dec hp vms% openvms% alphavms% (and stray whitespace) from the host, what remains is equ

Re: [patch ada]: Fix PR/50942

2012-02-09 Thread Kai Tietz
2012/2/9 Arnaud Charlet : >> this fix ada bootstrap issue for stage 3 for windows native builds >> >> ChangeLog >> >> 2012-02-09  Kai Tietz   >> >>       PR ada/50942 >>       * gcc-interface/Makefile.in (LN_S): Add r-option. >> >> Tested for i686-w64-mingw32.  Ok for apply? > > No, this chunk is o

Re: [patch ada]: Fix PR/50942

2012-02-09 Thread Arnaud Charlet
> this fix ada bootstrap issue for stage 3 for windows native builds > > ChangeLog > > 2012-02-09 Kai Tietz > > PR ada/50942 > * gcc-interface/Makefile.in (LN_S): Add r-option. > > Tested for i686-w64-mingw32. Ok for apply? No, this chunk is only relevant for VMS so cannot poss

Re: [patch ada]: Fix PR/50942

2012-02-09 Thread Tristan Gingold
On Feb 9, 2012, at 5:25 PM, Kai Tietz wrote: > Hi, > > this fix ada bootstrap issue for stage 3 for windows native builds > > ChangeLog > > 2012-02-09 Kai Tietz > > PR ada/50942 > * gcc-interface/Makefile.in (LN_S): Add r-option. > > Tested for i686-w64-mingw32. Ok for apply?

[patch ada]: Fix PR/50942

2012-02-09 Thread Kai Tietz
Hi, this fix ada bootstrap issue for stage 3 for windows native builds ChangeLog 2012-02-09 Kai Tietz PR ada/50942 * gcc-interface/Makefile.in (LN_S): Add r-option. Tested for i686-w64-mingw32. Ok for apply? Regards, Kai Index: gcc/gcc/ada/gcc-interface/Makefile.in ==