[MOAB-dev] r5848 - MOAB/trunk/tools/mbcoupler
iulian at mcs.anl.gov
iulian at mcs.anl.gov
Thu Nov 1 11:59:28 CDT 2012
Author: iulian
Date: 2012-11-01 11:59:28 -0500 (Thu, 01 Nov 2012)
New Revision: 5848
Modified:
MOAB/trunk/tools/mbcoupler/Makefile.am
Log:
for the executables in this folder (ssn_test, addfield) and for the tests,
LDADD autoconf variable specifies explicitly dependencies to libMOAB.so,
libiMesh.so, libmbcoupler.so; it will be needed for shared build on
ubuntu 12.04, for sure
I still can't explain the last night failures on buildbot, related to not
finding new functions. It could be that because of make -j4, the libMOAB.so
was not build before attempting to build these executables. Although make -j4
should be smart enough to solve the dependencies. Or maybe we do not
clearly define some dependency when we build these libraries/executables?
(food for thought ...)
Modified: MOAB/trunk/tools/mbcoupler/Makefile.am
===================================================================
--- MOAB/trunk/tools/mbcoupler/Makefile.am 2012-10-31 22:27:21 UTC (rev 5847)
+++ MOAB/trunk/tools/mbcoupler/Makefile.am 2012-11-01 16:59:28 UTC (rev 5848)
@@ -19,7 +19,7 @@
lib_LTLIBRARIES = libmbcoupler.la
libmbcoupler_la_LIBADD = $(top_builddir)/src/libMOAB.la $(top_builddir)/itaps/imesh/libiMesh.la
-LDADD = libmbcoupler.la
+LDADD = libmbcoupler.la $(top_builddir)/src/libMOAB.la $(top_builddir)/itaps/imesh/libiMesh.la
libmbcoupler_la_SOURCES = \
ElemUtil.cpp \
More information about the moab-dev
mailing list