diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2002-01-22 03:49:13 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2002-01-22 03:49:13 (GMT) |
commit | 702667c9f56b01d56bab7b2bc7249855fa919030 (patch) | |
tree | 1164326e4586d4bd3d989d48b230046a7cbd0ecd | |
parent | 6088512f7c924bced21c024e91f46704946c2297 (diff) | |
download | hdf5-702667c9f56b01d56bab7b2bc7249855fa919030.zip hdf5-702667c9f56b01d56bab7b2bc7249855fa919030.tar.gz hdf5-702667c9f56b01d56bab7b2bc7249855fa919030.tar.bz2 |
[svn-r4848]
Purpose:
Improvement
Description:
Using LIBS for c++ default library resulted in the library showed up
in two many places.
Solution:
Added new macro DEFAULT_LIBS to specify default library for the
C++ API tests
Platforms tested:
IRIX64 (modi4)
-rw-r--r-- | c++/config/irix6.x | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/c++/config/irix6.x b/c++/config/irix6.x index dfe28b5..dad44c5 100644 --- a/c++/config/irix6.x +++ b/c++/config/irix6.x @@ -20,7 +20,9 @@ if test -z "$cxx_flags_set"; then # libCio is a default library, since libtool before 1.5 doesn't fully # support C++ yet, default libraries must be explicitly specified. - LIBS="$LIBS -lCio" +# A new macro is used for this temporary and specific task so it +# won't polute the existing configuration + DEFAULT_LIBS="-lCio" DEBUG_CXXFLAGS=-g DEBUG_CPPFLAGS= |