Re: [winegcc06] Delayed import

2003-08-20 Thread Dimitrie O. Paun
On August 19, 2003 03:51 pm, Richard Cohen wrote: The ld documentation certainly doesn't mention delay loading and I can't find a reference on the binutils mailing list. MS: /DELAYLOAD Borland: -d Irix: -delay_load winebuild: -d and --delay-lib so I would suggest either -delay_load or

Re: [winegcc06] Delayed import

2003-08-19 Thread Richard Cohen
Dimitrie O. Paun wrote: On August 14, 2003 05:30 am, Richard Cohen wrote: winegcc -mwindows grotto.c -Wl,--delay-lib,comdlg32 Yes, this works better, but I'm curious why the gcc people don't support it? Did you check the mingw docu for this feature?

Re: [winegcc06] Delayed import

2003-08-14 Thread Dimitrie O. Paun
On August 13, 2003 10:08 pm, Richard Cohen wrote: --- tools.5/winegcc.c 2003-08-14 00:55:07.0 +0100 +++ tools/winegcc.c 2003-08-14 01:21:41.0 +0100 @@ -193,7 +193,8 @@ } argv[j] = 0; break; -

Re: [winegcc06] Delayed import

2003-08-14 Thread Dimitrie O. Paun
On August 14, 2003 05:30 am, Richard Cohen wrote: How about an option --delay-lib... for winewrap, and to avoid polluting winegcc's namespace, pass it via -Wl eg something like... winegcc -mwindows grotto.c -Wl,--delay-lib,comdlg32 Yes, this works better, but I'm curious why the gcc

Re: [winegcc06] Delayed import

2003-08-14 Thread Richard Cohen
Dimitrie O. Paun wrote: On August 13, 2003 10:08 pm, Richard Cohen wrote: This is not cool -- winegcc is supposed to be command line compatible with mingw-gcc, and -d conflicts with gcc's -d: Having the option in winewrap is OK, there we control the options. If this feature is useful in Windows,