diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2002-02-18 15:25:43 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2002-02-18 15:25:43 (GMT) |
commit | cf16f383ecb8d22b1d880cf2dad5d6d2775b5398 (patch) | |
tree | 330b54674ba6e8948df9a8f84f7b10c51b1dd675 | |
parent | 35bdf428bdffa4a2787b7bd38aee18a51bd91db6 (diff) | |
download | hdf5-cf16f383ecb8d22b1d880cf2dad5d6d2775b5398.zip hdf5-cf16f383ecb8d22b1d880cf2dad5d6d2775b5398.tar.gz hdf5-cf16f383ecb8d22b1d880cf2dad5d6d2775b5398.tar.bz2 |
[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
-rw-r--r-- | config/intel-osf1 | 2 |
1 files changed, 1 insertions, 1 deletions
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" |