#68882 in C
Steve,
I suggest just using the -m8 option on your 5.10 compiler (for any
V6 users out there, MATH=68882). This will not use the mathieee
library, but it will generate inline 68881/68882 code.
If your code must run on machines that do not have a coprocessor,
use the -mi switch instead. Assuming you're linking with our provided
startup, you don't need to do anything else.
Make sure that you link with the math library that matches your
-m option, though! That's a common mistake that has many people
puzzled. In V6 we added a warning message from the linker if you
mix math options, but in V5 you're on your own.
–Doug