[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
This commit is contained in:
Albert Cheng 2002-02-18 10:25:43 -05:00
parent 35bdf428bd
commit cf16f383ec

View File

@ -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"