Re: [Doxygen-users] Problems compiling Doxygen on Solaris
Brought to you by:
dimitri
|
From: Jac G. <ja...@ma...> - 2001-06-27 19:16:49
|
>I am trying to build doxygen 1.2.8.1 on solaris 5.8, and am getting errors. >We're using GCC/G++ 2.95.3, and have flex, bison and gmake installed on the >machine. > Autodetected platform solaris-cc... >CC = cc >CXX = CC There you have it: the configuration script detects that you are using the cc compiler instead of the gcc compiler. You should run the configure script with a --platform option (not sure which one) to tell it that you have gcc installed, instead of Solaris' compiler. ===Jac |