diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-11-30 18:04:36 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-11-30 18:04:36 (GMT) |
commit | 0c4dec2ba1c93260c06f9f5a2aa4c519748b2f47 (patch) | |
tree | 481e619097f6564635f2a82e03b2dee82ce94f5c | |
parent | 76e9fe72981606804aef82219d810dcbb25276e6 (diff) | |
download | hdf5-0c4dec2ba1c93260c06f9f5a2aa4c519748b2f47.zip hdf5-0c4dec2ba1c93260c06f9f5a2aa4c519748b2f47.tar.gz hdf5-0c4dec2ba1c93260c06f9f5a2aa4c519748b2f47.tar.bz2 |
[svn-r4661]
Purpose:
Bug Fix
Description:
We needed to support C++ on SP3. Libtool was putting a "-bnso" flag
on the compile line. This was causing the C++ compiler to barf..
Solution:
Removed the line.
Platforms tested:
OSF5.1
-rwxr-xr-x | bin/ltconfig | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/ltconfig b/bin/ltconfig index 5abc5e3..457cded 100755 --- a/bin/ltconfig +++ b/bin/ltconfig @@ -698,7 +698,11 @@ else case "$host_os" in aix3* | aix4*) # All AIX code is PIC. - link_static_flag='-bnso -bI:/lib/syscalls.exp' + #################################################################### + ## HACK Alert! This is causing problems with C++ on SP3...We'll just + ## remove this...THERE! All better now. + #################################################################### + ##link_static_flag='-bnso -bI:/lib/syscalls.exp' ;; hpux9* | hpux10* | hpux11*) |