"Paul Edwards" writes:
> It uses JCL (example below that you may find amusing), and there is a
> 100-character limit on the parameter.
All subcommands support response files (@foo), which can be used to work
around such a limit.
Andreas.
--
Andreas Schwab, sch...@linux-m68k.org
GPG Key finger
It seems to me that in addition to doing a strcmp to cc1, I would
also have needed to do a strcmp to cccp. Can someone confirm
that GCC 2.8.1 and GCC 3.4.6 differ in that respect - ie there
was an extra executable (cccp) in GCC 2.8.1 when doing that
task of converting from C to assember (ie compil
"Paul Edwards" writes:
> It seems to me that in addition to doing a strcmp to cc1, I would
> also have needed to do a strcmp to cccp. Can someone confirm
> that GCC 2.8.1 and GCC 3.4.6 differ in that respect - ie there
> was an extra executable (cccp) in GCC 2.8.1 when doing that
> task of conver
In GCC 3.4.6, in order to create a single executable called "gcc" that
takes C code and produces assembler, I needed to put this code into gcc.c:
#ifdef SINGLE_EXECUTABLE
{
int cnt = 0;
while (commands[i].argv[cnt] != NULL)
{
cnt++;
}
if (s