bug#32737: generated LDFLAGS order incorrect

2023-11-02 Thread Karl Berry

bug#32737: Re: bug#32737: generated LDFLAGS order incorrect

2018-09-17 Thread A.Timmermans
Thank you for your reply and your help, you are correct! This bugreport can be closed. KR, A.Timmermans

bug#32737: generated LDFLAGS order incorrect

2018-09-17 Thread Thomas Jahns
On 09/14/18 22:06, A.Timmermans wrote: incorrect, does not compile: LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ I'm pretty confident that's the correct way to specify this. Can you provide an example of what exactly is going wrong? A typical error is to erroneously pu

bug#32737: generated LDFLAGS order incorrect

2018-09-14 Thread A.Timmermans
incorrect, does not compile: LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ correct, compiles: LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS)  -o $@ $(AM_LDFLAGS) $(LDFLAGS) CXXLINK = $(CXXLD) $(AM_CXXFL