[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Question?
Well, in config.h I had to do the following on a snake running HP OSF/1.
+ /* Avoid bug compiling print.c on snake */
+ #ifdef __hp_osf
+ #define __NO_FP_VARARGS
+ #endif
But this was because the screwy compiler goofs on it's internal optimization
of stdarg/varargs with the FP definition is used. The magic __NO_FP_VARARGS
turns off the internal compiler stdargs code and uses a pretty basic scheme.
This is probably not the problem with HP-UX. My usual recommendation is to
use gcc.
John