From cf16f383ecb8d22b1d880cf2dad5d6d2775b5398 Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Mon, 18 Feb 2002 10:25:43 -0500 Subject: [svn-r4980] Purpose: Bug fix Description: The -lnoop library was specified in $LDFLAS when it should have been in $LIBS. In the past, human just put it in the back and repeated it enough times in the link statement till it worked. The tool h5cc exposed this error since the $LDFLAGS is put in front of all libraries, including libhdf5.a. That won't work. Solution: Moved the specification of -lnoop to $LIBS. Platforms tested: Tflops --- config/intel-osf1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/intel-osf1 b/config/intel-osf1 index d6411cd..bbe4c70 100644 --- a/config/intel-osf1 +++ b/config/intel-osf1 @@ -21,7 +21,7 @@ AR=${AR:-xar} RANLIB=: # Additional libraries -LDFLAGS="$LDFLAGS -lnoop_stubs" +LIBS="$LIBS -lnoop_stubs" # How to run serial and parallel test programs RUNSERIAL="yod -sz 1" -- cgit v0.12