From e574736322733ec5a126ca01efb958570e5355eb Mon Sep 17 00:00:00 2001 From: Andrew Yourtchenko Date: Wed, 13 Mar 2024 12:16:11 +0100 Subject: misc: fix the static vppctl build Change I58e1ae1c91f4a62e80eaf4e16e9932d8bab17c74 has introduced a reference to config.h, which is not there in a case of building a static standalone vppctl. Solution: add a variable STATIC_VPPCTL which, when defined, avoids including the missing include file. Thanks a lot to Damjan for the suggestion. Type: fix Change-Id: I133235ba07e5c2e0d5669be9c2292cab0fdf436f Signed-off-by: Andrew Yourtchenko --- src/vpp/app/vppctl.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/vpp/app/vppctl.c b/src/vpp/app/vppctl.c index 7c9651784e6..f1d69c3ca84 100644 --- a/src/vpp/app/vppctl.c +++ b/src/vpp/app/vppctl.c @@ -34,7 +34,9 @@ #include #include +#ifndef STATIC_VPPCTL #include +#endif #define SOCKET_FILE "/run/vpp/cli.sock" @@ -162,7 +164,7 @@ process_input (int sock_fd, unsigned char *rx_buf, int rx_buf_len, return j; } -#ifdef CLIB_SANITIZE_ADDR +#if !defined(STATIC_VPPCTL) && defined(CLIB_SANITIZE_ADDR) /* default options for Address Sanitizer */ const char * __asan_default_options (void) -- cgit 1.2.3-korg