summaryrefslogtreecommitdiffstats
path: root/c++/config/commence.in
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-11-30 19:52:42 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-11-30 19:52:42 (GMT)
commitb253cfbbecd24454236f9b88585bede2b76d887c (patch)
tree0ac8f1277b8cbced2fda0d3220b44c2a3aeb890c /c++/config/commence.in
parentd2e7ce139919b63c06452e9d153756a5af6fd95f (diff)
downloadhdf5-b253cfbbecd24454236f9b88585bede2b76d887c.zip
hdf5-b253cfbbecd24454236f9b88585bede2b76d887c.tar.gz
hdf5-b253cfbbecd24454236f9b88585bede2b76d887c.tar.bz2
[svn-r3037] Purpose:
Bug-ish fix Description: Spurious warnings would show up if libtool was trying to pass the -LANG:std flag to the compile line. Also, if the library is compiled with -all-static, then it would complain about not finding dlopen and friends. Solution: Used the libtool -Wc,<flag> option to pass the -LANG:std flag to the compile line. Used ``-dlopen self'' when compiling. Platforms tested: Linux
Diffstat (limited to 'c++/config/commence.in')
-rw-r--r--c++/config/commence.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/config/commence.in b/c++/config/commence.in
index 659436d..dcd62a5 100644
--- a/c++/config/commence.in
+++ b/c++/config/commence.in
@@ -46,9 +46,9 @@ PUB_LIB=$(LIB)
LT_STATIC_EXEC=@LT_STATIC_EXEC@
DYNAMIC_DIRS=@DYNAMIC_DIRS@
LT=$(top_builddir)/libtool
-LT_COMPILE=$(LT) --mode=compile $(CXX)
+LT_COMPILE=$(LT) --mode=compile $(CXX) -dlopen self
LT_LINK_LIB=$(LT) --mode=link $(CXX) -rpath $(libdir)
-LT_LINK_EXE=$(LT) --mode=link $(CXX) $(LT_STATIC_EXEC) -rpath $(bindir) $(DYNAMIC_DIRS)
+LT_LINK_EXE=$(LT) --mode=link $(CXX) $(LT_STATIC_EXEC) -dlopen self -static -rpath $(bindir) $(DYNAMIC_DIRS)
LT_RUN=$(LT) --mode=execute
LT_INSTALL_PROG=$(LT) --mode=install $(INSTALL_PROGRAM)
LT_INSTALL_LIB=$(LT) --mode=install $(INSTALL_DATA)