[Cppunit-devel] CppUnit successfully built on IRIX 6.5 with MIPSpro 7.3.1.3 compi ler
Brought to you by:
blep
From: DO, S. <so...@ba...> - 2002-08-02 04:03:32
|
If you aren't an IRIX developer, please just ignore. I have downloaded cppunit versions 1.8.0 and 1.9.9 and I managed to build with the following changes 1. Declare and export the following variables: In bash shell: "declare -x CFFLAGS='-LANG:std" and "declare -x LDFLAGS=-LANG:std" 2. Open the Makefile.am and Makefile.in and replace "cp -dpR" with "cp -pR" 3. Excecute the configure script: "./configure CC='CC -LANG:std' LDFLAGS=-LANG:std 4. Open the 'libtool' file and replace: "with_gcc=" with "with_gcc=no" and "LD=/usr/bin/ld -n32" with "LD=/usr/bin/CC" 4. Make a library: "make" 5. Before install them: cd to "doc" directory and repeat step2 6. Install the libs: "make install" I know that some of the steps are unnecessary but I just played it safe. I managed to compile and run examples from the "CppUnit Cookbook". Remember this is a workaround NOT a solution. Have fun, Soi |