X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvcl.am;h=763efc220f54dfa8c3fa3b463f4a462fc3614b6d;hb=9128637ee8f7b0d903551f165a1447d427e8dd19;hp=de8b4da7e27946c28334c0fb502f644841219d7a;hpb=5c7cf1cc5358d137160be1619981e7eea9a7402f;p=vpp.git diff --git a/src/vcl.am b/src/vcl.am index de8b4da7e27..763efc220f5 100644 --- a/src/vcl.am +++ b/src/vcl.am @@ -18,15 +18,11 @@ libvcl_ldpreload_la_SOURCES = libvppcom_la_DEPENDENCIES = \ libvppinfra.la \ libvlib.la \ - libsvmdb.la \ libsvm.la \ - libvlibmemory.la \ libvlibmemoryclient.la -libvcl_ldpreload_la_DEPENDENCIES = $(libvppcom_la_DEPENDENCIES) - -libvppcom_la_LIBADD = $(libvppcom_la_DEPENDENCIES) -lpthread -libvcl_ldpreload_la_LIBADD = $(libvcl_ldpreload_la_DEPENDENCIES) -lpthread +libvppcom_la_LIBADD = $(libvppcom_la_DEPENDENCIES) -lpthread -lrt +libvcl_ldpreload_la_LIBADD = -lpthread -lrt -ldl libvppcom_la_SOURCES += \ vcl/vppcom.c @@ -38,7 +34,11 @@ libvcl_ldpreload_la_SOURCES += \ vcl/vcom_socket_wrapper.c \ vcl/vcom.c \ vcl/vcom_socket.c \ - vcl/vppcom.c + $(libvppcom_la_SOURCES) \ + $(libvppinfra_la_SOURCES) \ + $(libvlib_la_SOURCES) \ + $(libsvm_la_SOURCES) \ + $(libvlibmemoryclient_la_SOURCES) nobase_include_HEADERS += \ vcl/vcom_socket_wrapper.h \ @@ -56,7 +56,15 @@ vcl_test_server_SOURCES = vcl/vcl_test_server.c vcl_test_server_LDADD = libvppcom.la vcl_test_client_SOURCES = vcl/vcl_test_client.c -vcl_test_client_LDADD = libvppcom.la + +# Link libvcl_ldpreload.la instead of vppcom.la +# to validate that all symbols are included in +# libvcl_ldpreload.la at build time. +# +# Not recommended for production VCL apps as +# it includes extraneous code which will never +# be executed. +vcl_test_client_LDADD = libvcl_ldpreload.la sock_test_server_SOURCES = vcl/sock_test_server.c sock_test_client_SOURCES = vcl/sock_test_client.c