Mail Archives: djgpp/1999/06/13/06:59:37
On Fri, 11 Jun 1999, Stefan Viljoen wrote:
> Your problem seems to be that you cannot use wildcards ("*.o*) on the GCC
> commandline - I think!
Actually, there should be no problems with using wildcards on the GCC
command line, provided that they don't conflict with each other (like
if they define functions by the same name). GCC doesn't see the
wildcards, since they are all expanded by the startup code (see
section 16.1 of the FAQ for details). So by the time GCC's `main'
function runs, it sees a long list of object files, not the wildcard
you typed.
- Raw text -