Re: Link options added

2002-01-04 Thread Dan Sugalski
At 02:04 PM 1/4/2002 -0800, Jason Diamond wrote: >If it works for GCC to have link options appear after the filename (I'd try >it but I don't have cygwin installed here at work) then the attached patch >might work without having to override anything. (It works for me.) Works here. In, and thanks.

Re: Link options added

2002-01-04 Thread Jason Diamond
> GCC plays the role of both compiler and linker. (Well, it compiles and > invokes ld under the hood, but it's all in one step) It can definitely > handle linker flags. CL.exe does this, too. I just found out that you can specify link options if you include them after a /link option at the end of

Re: Link options added

2002-01-04 Thread Dan Sugalski
At 01:33 PM 1/4/2002 -0800, Jason Diamond wrote: > > Okay, I just added a separate link options question and associated >makefile > > twiddlings to configure.pl. Any link-specific options you need can now go > > there, or get jammed into $c{ldflags} if you need platform-specific bits. > >Having th

Re: Link options added

2002-01-04 Thread Jason Diamond
> Okay, I just added a separate link options question and associated makefile > twiddlings to configure.pl. Any link-specific options you need can now go > there, or get jammed into $c{ldflags} if you need platform-specific bits. Having the $c{ldflags} appear in compiletestc is showing warnings o

Link options added

2002-01-04 Thread Dan Sugalski
Okay, I just added a separate link options question and associated makefile twiddlings to configure.pl. Any link-specific options you need can now go there, or get jammed into $c{ldflags} if you need platform-specific bits. Dan --