As you may recall, I have a large C++ application which calls a smallish library written in Pascal. I have compiled and linked that library as a universal binary which is intended to run under Mac OS X 10.3 and up on PowerPC, and Mac OS X 10.4 and up under i386. I had been running the application on Mac OS X 10.4 and up only, but have been going through the trouble of extending support to 10.3. But there is a symbol, apparently referenced from my Pascal library, which is missing. ___powidf2. I think this might be a math function of the form: float = pow(float, int); but am not sure. I've linked in libgpc, libgcc, and the darwin-fpsave libraries.
Does anyone know how I should go about getting this to link? Googling and searching on this mailing list have not gotten be anywhere.
--glenn