On August 13, 2003 10:08 pm, Richard Cohen wrote:
> --- tools.5/winegcc.c 2003-08-14 00:55:07.000000000 +0100
> +++ tools/winegcc.c 2003-08-14 01:21:41.000000000 +0100
> @@ -193,7 +193,8 @@
> }
> argv[j] = 0;
> break;
> - case 'l':
> + case 'l': /* import/static library */
> + case 'd': /* delayed import library */
This is not cool -- winegcc is supposed to be command line compatible
with mingw-gcc, and -d conflicts with gcc's -d:
-dletters
Says to make debugging dumps during compilation at times specified
by letters. This is used for debugging the compiler. The file names
for most of the dumps are made by appending a pass number and a word
to the dumpname. dumpname is generated from the name of the output
file, if explicitly specified and it is not an executable, otherwise
it is the basename of the source file. In both cases any suffix is
removed (e.g. foo.00.rtl or foo.01.sibling). Here are the possible
letters for use in letters, and their meanings:
.....
Having the option in winewrap is OK, there we control the options.
If this feature is useful in Windows, gcc must/will support it,
right? If they don't already, we better get in touch with them
so we end up with the same option name/syntax.
--
Dimi.