@@ -172,6 +172,16 @@ AS_IF([test "${with_platform}" = "linux-generic"],
AC_DEFINE_UNQUOTED([IMPLEMENTATION_NAME], ["$IMPLEMENTATION_NAME"],
[Define to the name of the implementation])
+##########################################################################
+# Build examples/tests dynamically
+##########################################################################
+AC_ARG_ENABLE([static-applications],
+ [AS_HELP_STRING([--disable-static-applications],
+ [disable static linking of examples and tests]
+ [ with ODP])], [],
+ [enable_static_applications=yes])
+AM_CONDITIONAL([STATIC_APPS], [test "x$enable_static_applications" != "xno"])
+
##########################################################################
# Include m4 files
##########################################################################
@@ -383,6 +393,7 @@ AC_MSG_RESULT([
Deprecated APIs: ${deprecated}
debug: ${enable_debug}
cunit: ${cunit_support}
+ static tests linkage: ${enable_static_applications}
test_vald: ${test_vald}
test_perf: ${test_perf}
test_perf_proc: ${test_perf_proc}
@@ -1,7 +1,13 @@
TESTS_ENVIRONMENT = EXEEXT=${EXEEXT}
LIB = $(top_builddir)/lib
-LDADD = $(LIB)/libodp-linux.la $(LIB)/libodphelper.la $(DPDK_LIBS_LT)
+LDADD = $(LIB)/libodp-linux.la $(LIB)/libodphelper.la
+
+# Do not link to DPDK twice in case of dynamic linking with ODP
+if STATIC_APPS
+LDADD += $(DPDK_LIBS_LT)
+endif
+
AM_CFLAGS = \
-I$(srcdir) \
-I$(top_srcdir)/example \
@@ -13,4 +19,8 @@ AM_CFLAGS = \
-I$(top_srcdir)/platform/@with_platform@/arch/@ARCH_DIR@ \
-I$(top_builddir)/include
+if STATIC_APPS
AM_LDFLAGS = -L$(LIB) -static
+else
+AM_LDFLAGS =
+endif
@@ -6,8 +6,7 @@ SUBDIRS = performance
if test_vald
TESTS = validation/api/pktio/pktio_run.sh \
validation/api/pktio/pktio_run_tap.sh \
- validation/api/shmem/shmem_linux$(EXEEXT) \
- ring/ring_main$(EXEEXT)
+ validation/api/shmem/shmem_linux$(EXEEXT)
SUBDIRS += validation/api/pktio\
validation/api/shmem\
@@ -1,3 +1,7 @@
+# ring test uses internal symbols from libodp-linux which are not available
+# when linking test with libodp-linux.so
+if STATIC_APPS
+
include $(top_srcdir)/test/Makefile.inc
test_PROGRAMS = ring_main
@@ -6,4 +10,25 @@ ring_main_SOURCES = \
ring_suites.c ring_suites.h \
ring_basic.c ring_stress.c
+TESTS = ring_main$(EXEEXT)
+
PRELDADD += $(LIBCUNIT_COMMON)
+
+TESTNAME = linux-generic-ring
+
+TESTENV = tests-$(TESTNAME).env
+
+test_DATA = $(TESTENV)
+
+DISTCLEANFILES = $(TESTENV)
+.PHONY: $(TESTENV)
+$(TESTENV):
+ echo "TESTS=\"$(TESTS)\"" > $@
+ echo "$(TESTS_ENVIRONMENT)" >> $@
+ echo "$(LOG_COMPILER)" >> $@
+
+if test_installdir
+installcheck-local:
+ $(DESTDIR)/$(testdir)/run-test.sh $(TESTNAME)
+endif
+endif
@@ -11,9 +11,14 @@ LIBTHRMASK_COMMON = $(COMMON_DIR)/libthrmask_common.la
#in the following line, the libs using the symbols should come before
#the libs containing them! The includer is given a chance to add things
#before libodp by setting PRELDADD before the inclusion.
-LDADD = $(PRELDADD) $(LIBODP) $(DPDK_LIBS_LT)
+LDADD = $(PRELDADD) $(LIBODP)
PRELDADD =
+# Do not link to DPDK twice in case of dynamic linking with ODP
+if STATIC_APPS
+LDADD += $(DPDK_LIBS_LT)
+endif
+
INCFLAGS = \
-I$(top_builddir)/platform/@with_platform@/include \
-I$(top_srcdir)/helper/include \
@@ -28,7 +33,11 @@ AM_CPPFLAGS = $(INCFLAGS)
AM_CPPFLAGS += -I$(top_srcdir)/test/common
AM_CFLAGS = $(CUNIT_CFLAGS)
+if STATIC_APPS
AM_LDFLAGS = -L$(LIB) -static
+else
+AM_LDFLAGS =
+endif
@VALGRIND_CHECK_RULES@