[Pyrex] Pyrex testing

Greg Ewing greg.ewing at canterbury.ac.nz
Thu Aug 2 02:49:02 CEST 2007


Scott Jackson wrote:
> gcc: cannot specify -o with -c or -S and multiple compilations
> ===
> so I removed -c

Don't do that, you need it!

-c means "just compile these files, don't try to link them".
This is probably the reason for the complaints about "main"
and other things being undefined.

I expect you got the above message because other problems
with the command line were fooling it into thinking there
was more than one source file.

> Funny thing is, all of the darwin-native apps on Mac
> like to use the LF standard 8-)

Pyrex began its days pre-OSX, and there are likely to be
files in there that still have CR line endings. I'm using
BBEdit, which detects what line endings are being used
and keeps them that way, even on OSX. Feel free to translate
them to LFs if it helps.

--
Greg



More information about the Pyrex mailing list