1 IMPORTANT: 2 3 Please run 4 ./autogen.sh 5 6 to generate the auxiliary scripts. Then you could use 7 CXXFLAGS="-O2" ./configure --disable-debug 8 make 9 10 or, to generate debug version: 11 CXXFLAGS="-g -O0" ./configure --enable-debug 12 make 13 14 as descripted in file INSTALL. 15 16 Please note, under solaris, you should make CXXFLAGS looks like 17 CXXFLAGS="-lm -lCstd -lCrun -lc ..." 18 Otherwise the final result will not be linked correctly. Yet, if 19 your libtool version is high, as 1.5.20, this kind of problem will 20 not happen. Another problem is the -norunpath for CXX link, currently 21 libtool seems has bugs dealing with this, please use the following 22 before run configure: 23 CXX="$CXX -norunpath" 24 export CXX 25 ./configure 26 27 Run 28 ./autoclean.sh 29 30 to erase all generated auxiliary scripts. 31 32 Note, the development documentation will put into devdocs/html directory. 33 It is generated by doxygen. Unser this directory, just run 34 doxygen 35 36