I’m trying to compile some code (using g77, on a PowerPC Mac OSX 10.4), and it’s failing with the following error messages:
/var/tmp//ccXtd3UB.s:34201:Parameter syntax error (parameter 2)
/var/tmp//ccXtd3UB.s:34203:Parameter syntax error (parameter 2)
The ccXtd3UB part varies each time I try to run the compiler (the cc seems to be constant, but the rest appears to be randomly generated), but all the rest of the error message appears to be consistent. On the basis that ccXtd3UB.s looks like a filename (maybe a temporary file that’s created in the course of compilation?), I tried searching my computer for anything with that name, but came up empty (and I’m not sure what the double slash would be for in the path, anyway). Googling for “Parameter syntax error (parameter 2)” gives a number of hits for people who appear to have the same problem (although their *.s parts appear to be nonrandom), but I can’t find any solutions.
Any help?