diff options
author | Paul Harten <pharten@ncsa.uiuc.edu> | 1998-04-02 20:34:10 (GMT) |
---|---|---|
committer | Paul Harten <pharten@ncsa.uiuc.edu> | 1998-04-02 20:34:10 (GMT) |
commit | 2a77c19b2216f04a6f8c50995ca0bf09f69e63d0 (patch) | |
tree | 0137a8fc15f0e2e66253414cbf5b44ae877e50fc /config | |
parent | 78c1574378256975b39d4b65a011307a631dc667 (diff) | |
download | hdf5-2a77c19b2216f04a6f8c50995ca0bf09f69e63d0.zip hdf5-2a77c19b2216f04a6f8c50995ca0bf09f69e63d0.tar.gz hdf5-2a77c19b2216f04a6f8c50995ca0bf09f69e63d0.tar.bz2 |
[svn-r334] Purpose:
To resolve a reference.
Problem:
Reference to routine 'getrusage()' is unresolved during link step.
Solution:
In the site config file, hdf5/config/intel-osf1, the line
LIBS="-L./ -L../"
has been extended to include ...
LIBS="-L./ -L../ -lnoop_stubs",
a reference to a library which includes the 'getrusage()' routine.
Platform tested:
sasn100
Diffstat (limited to 'config')
-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 ecc16ee..e42a0db 100644 --- a/config/intel-osf1 +++ b/config/intel-osf1 @@ -3,7 +3,7 @@ CC=cicc AR=xar RANLIB=true -LIBS="-L./ -L../" +LIBS="-L./ -L../ -lnoop_stubs" RUNTEST=yod export CC AR RANLIB LIBS RUNTEST |