Re: [Cppunit-devel] CppUnit successfully built on IRIX 6.5 with M IPSpro 7.3.1.3 compi ler
Brought to you by:
blep
From: Steve M. R. <ste...@vi...> - 2002-11-13 16:55:26
|
On Sun, Nov 10, 2002 at 10:47:17AM +0200, Doron Ofek wrote: > Thanks to your help I managed to compile CppUnit on IRIX 6.5. > One note: On my station I had to run the configure script with a third > parameter thus: > "./configure CC='CC -LANG:std' LDFLAGS=-LANG:std CXX='CC -LANG:std'" It's been a while since I built CppUnit under IRIX, but I'm pretty sure that only CXX needs to be set: ./configure CXX='CC -LANG:std' Though I now see that README-unix incorrectly says to set "CC" ... :-( > -----Original Message----- > From: DO, Soi [mailto:so...@ba...] > Sent: Friday, August 02, 2002 6:03 AM > To: 'cpp...@li...' > Cc: FEODOROFF, Ray; David Coates (E-mail) > Subject: [Cppunit-devel] CppUnit successfully built on IRIX 6.5 with > MIPSpro 7.3.1.3 compi ler > > > 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" It is safer to edit only "Makefile.in". [Editing Makefile.am might cause you grief if your automake version is different from the one used to package cppunit.] -S |