Date: Sun, 13 Jun 1999 11:40:43 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Stefan Viljoen cc: djgpp AT delorie DOT com Subject: Re: A Linking problem In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk 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.