Re: [GXemul-users] Errors with SVN
Status: Alpha
Brought to you by:
gavare
From: Nigel H. <nj...@ba...> - 2009-08-20 10:55:33
|
Anders Gavare wrote: > > > On a closer look, it seems that the configure script ignored LDFLAGS. > Building a file with just plain make seems to make use of LDFLAGS: > > $ make hi > c++ -O2 -fno-strict-aliasing -pipe hi.cc -o hi > $ rm hi > > $ CXXLINK=apa make hi > c++ -O2 -fno-strict-aliasing -pipe hi.cc -o hi > $ rm hi > > $ LDFLAGS=apa make hi > c++ -O2 -fno-strict-aliasing -pipe apa hi.cc -o hi > c++: apa: No such file or directory > *** Error code 1 > > (As seen above, I also tried CXXLINK, but that wasn't used.) > > So, if you feel like trying SVN revision 5617, then it should work as > long as your LDFLAGS contains -lgomp. > > http://gxemul.svn.sourceforge.net/viewvc/gxemul/gxemul/trunk/configure?r1=5552&r2=5617 > I've updated and run configure, but I don't know that it works yet: njh@packard:~/src/gxemul$ echo $LDFLAGS -lgomp njh@packard:~/src/gxemul$ fgrep lgomp Makefile njh@packard:~/src/gxemul$ -Nigel |