diff options
author | Dave Barach <dave@barachs.net> | 2017-01-20 19:50:09 -0500 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-01-23 15:17:25 +0000 |
commit | fe6bdfd84573cd8813a211f9094ee734f088ce16 (patch) | |
tree | 68c109d579ebbcb64c2a0e9af379aaf0522c0c0b /src/vpp.am | |
parent | 675a69cdf6eb1a8e60613bef4a918fe1b354c276 (diff) |
binary-api debug CLI works with plugins
Change-Id: I81f33f5153d5afac94b66b5a8cb91da77463af79
Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'src/vpp.am')
-rw-r--r-- | src/vpp.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/vpp.am b/src/vpp.am index 425f1e32925..0b605ec5e32 100644 --- a/src/vpp.am +++ b/src/vpp.am @@ -28,7 +28,9 @@ bin_vpp_SOURCES += \ if WITH_APICLI bin_vpp_SOURCES += \ vpp/api/api_format.c \ - vpp/api/api_main.c + vpp/api/api_main.c \ + vpp/api/plugin.c \ + vpp/api/plugin.h endif # comment out to disable stats upload to gmond @@ -78,6 +80,8 @@ bin_vpp_LDADD = \ libvppinfra.la \ -lrt -lm -lpthread -ldl +bin_vpp_LDFLAGS = -Wl,--export-dynamic + if ENABLE_TESTS noinst_PROGRAMS += bin/test_client |