gcc 2.95.2 on a Solaris 7 system is giving me:
sst.c:2452: `__builtin_va_alist' undeclared (first use in this
function)
According to the Solaris 2 FAQ (1.70), this would make sense with
older gccs, but not with gcc 2.8.0 or later. I went ahead and
recompiled gcc specifically on this system, and it didn't help.
Here's the build command I used:
mkdir objdir; cd objdir && ../configure --enable-languages=c++ &&
make bootstrap
Here's the install command I used:
cd objdir && make install
The code #includes a file that does a #include <sys/varargs.h>.
- Morty