This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Specifying command line arguments in a file?
Mark Mitchell <mark@codesourcery.com> writes:
> But, in my opinion, GCC (and the rest of the toolchain) should support
> something analagous to the -@ options used by many Windows tools.
The Java front end already does, though only when compiling, not linking.
It supports for example:
gcj -c -o foo.o @FILE
Gcj also supports:
gcj -c -o foo.o file1.java file2.java ... filen.java
The latter is implemented using the same mechanism as the former.
--
--Per Bothner
per@bothner.com http://www.bothner.com/~per/