On Fri, Apr 19, 2019 at 01:22:14PM -0700, William Tu wrote:
> The patch introduces experimental AF_XDP support for OVS netdev.
> AF_XDP is a new address family working together with eBPF/XDP.
> A socket with AF_XDP family can receive and send raw packets
> from an eBPF/XDP program attached to the netdev.
> For details introduction and configuration, see
> Documentation/intro/install/afxdp.rst
>
> Signed-off-by: William Tu <[email protected]>
> Co-authored-by: Yi-Hung Wei <[email protected]>
> Cc: Tim Rozet <[email protected]>
> Cc: Eelco Chaudron <[email protected]>
Thanks, William and Yi-Hung.
Before I installed libbpf, "configure" failed, even without
--enable-afxdp:
config.status: error: Something went wrong bootstrapping makefile fragments
for automatic dependency tracking. Try re-running configure with the
'--disable-dependency-tracking' option to at least be able to build
the package (albeit without support for automatic dependency tracking).
See `config.log' for more details
I'm attaching the full config.log in case it is helpful.
I would recommend adding a sentence or two to afxdp.rst explaining why
someone would want to use AF_XDP. Currently it is kind of there
("...much better performance than AF_PACKET.") but it is not called out
very well. Maybe something along the lines of saying that it aims to
have comparable performance to DPDK but cooperate better with existing
kernel mechanisms. Otherwise, someone who is new to OVS or to AF_XDP
will not have any idea of the context.
In afxdp.rst, I'd also recommend explaining why the recommended kernel
config options are recommend. I'd guess that the BPF_JIT ones are there
for performance and XDP_SOCKETS_DIAG is for debugging, but it'd be nice
to say so.
s/Fist/First/:
+Fist, clone a recent version of Linux bpf-next tree::
In the instructions for installing libbpf, I had to run plain "ldconfig"
by hand before the library showed up in "ldconfig -p" output.
I'm not sure everyone knows the system include path, so you might add
something like "e.g. /usr/local/include/bpf/xsk.h" to this note:
+.. note::
+ Make sure xsk.h is install in system's library path
"make install_headers" failed to install libbpf_util.h for me, so the
build failed. I installed it by hand and it worked OK after that:
blp@sigill:~/nicira/bpf-next/tools/lib/bpf(0)$ sudo cp libbpf_util.h
/usr/local/include/bpf/
I didn't test AF_XDP at runtime, but I did verify that the binary
linked and started up OK.
I had to apply the following patch to suppress warnings from sparse and
GCC 8.x:
diff --git a/lib/netdev-afxdp.c b/lib/netdev-afxdp.c
index 56f313606190..17c99f389e63 100644
--- a/lib/netdev-afxdp.c
+++ b/lib/netdev-afxdp.c
@@ -91,8 +91,9 @@ VLOG_DEFINE_THIS_MODULE(netdev_afxdp);
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
#define UMEM2DESC(elem, base) ((uint64_t)((char *)elem - (char *)base))
-#define UMEM2XPKT(base, i) \
- (struct dp_packet_afxdp *)((char *)base + i * sizeof(struct
dp_packet_afxdp))
+#define UMEM2XPKT(base, i) \
+ ALIGNED_CAST(struct dp_packet_afxdp *, \
+ (char *)base + i * sizeof(struct dp_packet_afxdp))
static uint32_t opt_xdp_bind_flags = XDP_COPY;
static uint32_t opt_xdp_flags = XDP_FLAGS_UPDATE_IF_NOEXIST |
XDP_FLAGS_SKB_MODE;
@@ -130,8 +131,8 @@ static struct xsk_umem_info *xsk_configure_umem(void
*buffer, uint64_t size)
for (i = NUM_FRAMES - 1; i >= 0; i--) {
struct umem_elem *elem;
- elem = (struct umem_elem *)((char *)umem->buffer
- + i * FRAME_SIZE);
+ elem = ALIGNED_CAST(struct umem_elem *,
+ (char *)umem->buffer + i * FRAME_SIZE);
umem_elem_push(&umem->mpool, elem);
}
@@ -527,7 +528,8 @@ retry:
addr = *xsk_ring_cons__comp_addr(&xsk->umem->cq, idx_cq++);
- elem = (struct umem_elem *)((char *)xsk->umem->buffer + addr);
+ elem = ALIGNED_CAST(struct umem_elem *,
+ (char *)xsk->umem->buffer + addr);
umem_elem_push(&xsk->umem->mpool, elem);
}
xsk_ring_cons__release(&xsk->umem->cq, tx_done);
And the following to suppress additional warnings from Clang:
diff --git a/lib/netdev-afxdp.c b/lib/netdev-afxdp.c
index 56f313606190..c675cf2e51a8 100644
--- a/lib/netdev-afxdp.c
+++ b/lib/netdev-afxdp.c
@@ -273,7 +274,7 @@ xsk_destroy(struct xsk_socket_info *xsk)
return;
}
-static inline void
+static inline void OVS_UNUSED
print_xsk_stat(struct xsk_socket_info *xsk OVS_UNUSED) {
struct xdp_statistics stat;
socklen_t optlen;
diff --git a/lib/xdpsock.c b/lib/xdpsock.c
index 9bd574e61774..8d6b37d3b6c2 100644
--- a/lib/xdpsock.c
+++ b/lib/xdpsock.c
@@ -70,7 +70,7 @@ static inline void ovs_spin_unlock(ovs_spinlock_t *sl)
__atomic_store_n(&sl->locked, 0, __ATOMIC_RELEASE);
}
-static inline int ovs_spin_trylock(ovs_spinlock_t *sl)
+static inline int OVS_UNUSED ovs_spin_trylock(ovs_spinlock_t *sl)
{
int exp = 0;
return __atomic_compare_exchange_n(&sl->locked, &exp, 1,
Thanks,
Ben.
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by openvswitch configure 2.11.90, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ ../configure --enable-ssl --enable-Werror --prefix=/usr
--localstatedir=/var KARCH=i386 --enable-silent-rules CFLAGS=-g -O2
-fno-diagnostics-show-caret -fno-common -fno-omit-frame-pointer
-fsanitize=address P4C_BEHAVIORAL=/home/blp/.local/bin/p4c-behavioral
--enable-sparse CC=gcc-8 --enable-afxdp
## --------- ##
## Platform. ##
## --------- ##
hostname = sigill
uname -m = x86_64
uname -r = 4.19.0-1-amd64
uname -s = Linux
uname -v = #1 SMP Debian 4.19.12-1 (2018-12-22)
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = x86_64
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /home/blp/bin
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/local/games
PATH: /usr/games
## ----------- ##
## Core tests. ##
## ----------- ##
configure:3020: checking for a BSD-compatible install
configure:3088: result: /usr/bin/install -c
configure:3099: checking whether build environment is sane
configure:3154: result: yes
configure:3305: checking for a thread-safe mkdir -p
configure:3344: result: /usr/bin/mkdir -p
configure:3351: checking for gawk
configure:3381: result: no
configure:3351: checking for mawk
configure:3367: found /usr/bin/mawk
configure:3378: result: mawk
configure:3389: checking whether make sets $(MAKE)
configure:3411: result: yes
configure:3440: checking whether make supports nested variables
configure:3457: result: yes
configure:3536: checking how to create a pax tar archive
configure:3547: tar --version
tar (GNU tar) 1.30
Copyright (C) 2017 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by John Gilmore and Jay Fenlason.
configure:3550: $? = 0
configure:3590: tardir=conftest.dir && eval tar --format=posix -chf - "$tardir"
>conftest.tar
configure:3593: $? = 0
configure:3597: tar -xf - <conftest.tar
configure:3600: $? = 0
configure:3602: cat conftest.dir/file
GrepMe
configure:3605: $? = 0
configure:3618: result: gnutar
configure:3673: checking whether make supports the include directive
configure:3688: make -f confmf.GNU && cat confinc.out
this is the am__doit target
configure:3691: $? = 0
configure:3710: result: yes (GNU style)
configure:3780: checking for gcc
configure:3807: result: gcc-8
configure:4036: checking for C compiler version
configure:4045: gcc-8 --version >&5
gcc-8 (Debian 8.2.0-21) 8.2.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:4056: $? = 0
configure:4045: gcc-8 -v >&5
Using built-in specs.
COLLECT_GCC=gcc-8
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 8.2.0-21'
--with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs
--enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr
--with-gcc-major-version-only --program-suffix=-8
--program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu
--enable-libstdcxx-debug --enable-libstdcxx-time=yes
--with-default-libstdcxx-abi=new --enable-gnu-unique-object
--disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie
--with-system-zlib --with-target-system-zlib --enable-objc-gc=auto
--enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64
--with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic
--enable-offload-targets=nvptx-none --without-cuda-driver
--enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu
--target=x86_64-linux-gnu
Thread model: posix
gcc version 8.2.0 (Debian 8.2.0-21)
configure:4056: $? = 0
configure:4045: gcc-8 -V >&5
gcc-8: error: unrecognized command line option '-V'
gcc-8: fatal error: no input files
compilation terminated.
configure:4056: $? = 1
configure:4045: gcc-8 -qversion >&5
gcc-8: error: unrecognized command line option '-qversion'; did you mean
'--version'?
gcc-8: fatal error: no input files
compilation terminated.
configure:4056: $? = 1
configure:4076: checking whether the C compiler works
configure:4098: gcc-8 -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:4102: $? = 0
configure:4150: result: yes
configure:4153: checking for C compiler default output file name
configure:4155: result: a.out
configure:4161: checking for suffix of executables
configure:4168: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:4172: $? = 0
configure:4194: result:
configure:4216: checking whether we are cross compiling
configure:4224: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:4228: $? = 0
configure:4235: ./conftest
configure:4239: $? = 0
configure:4254: result: no
configure:4259: checking for suffix of object files
configure:4281: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:4285: $? = 0
configure:4306: result: o
configure:4310: checking whether we are using the GNU C compiler
configure:4329: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:4329: $? = 0
configure:4338: result: yes
configure:4347: checking whether gcc-8 accepts -g
configure:4367: gcc-8 -c -g conftest.c >&5
configure:4367: $? = 0
configure:4408: result: yes
configure:4425: checking for gcc-8 option to accept ISO C89
configure:4488: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:4488: $? = 0
configure:4501: result: none needed
configure:4526: checking whether gcc-8 understands -c and -o together
configure:4548: gcc-8 -c conftest.c -o conftest2.o
configure:4551: $? = 0
configure:4548: gcc-8 -c conftest.c -o conftest2.o
configure:4551: $? = 0
configure:4563: result: yes
configure:4582: checking dependency style of gcc-8
configure:4693: result: gcc3
configure:4708: checking for gcc-8 option to accept ISO C99
configure:4857: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:4857: $? = 0
configure:4870: result: none needed
configure:4944: checking for g++
configure:4960: found /usr/bin/g++
configure:4971: result: g++
configure:4998: checking for C++ compiler version
configure:5007: g++ --version >&5
g++ (Debian 8.2.0-21) 8.2.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:5018: $? = 0
configure:5007: g++ -v >&5
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 8.2.0-21'
--with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs
--enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr
--with-gcc-major-version-only --program-suffix=-8
--program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu
--enable-libstdcxx-debug --enable-libstdcxx-time=yes
--with-default-libstdcxx-abi=new --enable-gnu-unique-object
--disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie
--with-system-zlib --with-target-system-zlib --enable-objc-gc=auto
--enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64
--with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic
--enable-offload-targets=nvptx-none --without-cuda-driver
--enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu
--target=x86_64-linux-gnu
Thread model: posix
gcc version 8.2.0 (Debian 8.2.0-21)
configure:5018: $? = 0
configure:5007: g++ -V >&5
g++: error: unrecognized command line option '-V'
g++: fatal error: no input files
compilation terminated.
configure:5018: $? = 1
configure:5007: g++ -qversion >&5
g++: error: unrecognized command line option '-qversion'; did you mean
'--version'?
g++: fatal error: no input files
compilation terminated.
configure:5018: $? = 1
configure:5022: checking whether we are using the GNU C++ compiler
configure:5041: g++ -c conftest.cpp >&5
configure:5041: $? = 0
configure:5050: result: yes
configure:5059: checking whether g++ accepts -g
configure:5079: g++ -c -g conftest.cpp >&5
configure:5079: $? = 0
configure:5120: result: yes
configure:5145: checking dependency style of g++
configure:5256: result: gcc3
configure:5276: checking how to run the C preprocessor
configure:5307: gcc-8 -E conftest.c
configure:5307: $? = 0
configure:5321: gcc-8 -E conftest.c
conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:5321: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5346: result: gcc-8 -E
configure:5366: gcc-8 -E conftest.c
configure:5366: $? = 0
configure:5380: gcc-8 -E conftest.c
conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:5380: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5409: checking for grep that handles long lines and -e
configure:5467: result: /usr/bin/grep
configure:5472: checking for fgrep
configure:5534: result: /usr/bin/grep -F
configure:5539: checking for egrep
configure:5601: result: /usr/bin/grep -E
configure:5660: checking for pkg-config
configure:5678: found /usr/bin/pkg-config
configure:5690: result: /usr/bin/pkg-config
configure:5715: checking pkg-config is at least version 0.9.0
configure:5718: result: yes
configure:5733: checking for ANSI C header files
configure:5753: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:5753: $? = 0
configure:5826: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:5826: $? = 0
configure:5826: ./conftest
configure:5826: $? = 0
configure:5837: result: yes
configure:5850: checking for sys/types.h
configure:5850: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:5850: $? = 0
configure:5850: result: yes
configure:5850: checking for sys/stat.h
configure:5850: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:5850: $? = 0
configure:5850: result: yes
configure:5850: checking for stdlib.h
configure:5850: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:5850: $? = 0
configure:5850: result: yes
configure:5850: checking for string.h
configure:5850: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:5850: $? = 0
configure:5850: result: yes
configure:5850: checking for memory.h
configure:5850: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:5850: $? = 0
configure:5850: result: yes
configure:5850: checking for strings.h
configure:5850: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:5850: $? = 0
configure:5850: result: yes
configure:5850: checking for inttypes.h
configure:5850: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:5850: $? = 0
configure:5850: result: yes
configure:5850: checking for stdint.h
configure:5850: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:5850: $? = 0
configure:5850: result: yes
configure:5850: checking for unistd.h
configure:5850: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:5850: $? = 0
configure:5850: result: yes
configure:5863: checking minix/config.h usability
configure:5863: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
conftest.c:54:10: fatal error: minix/config.h: No such file or directory
compilation terminated.
configure:5863: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <minix/config.h>
configure:5863: result: no
configure:5863: checking minix/config.h presence
configure:5863: gcc-8 -E conftest.c
conftest.c:21:10: fatal error: minix/config.h: No such file or directory
#include <minix/config.h>
^~~~~~~~~~~~~~~~
compilation terminated.
configure:5863: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h. */
| #include <minix/config.h>
configure:5863: result: no
configure:5863: checking for minix/config.h
configure:5863: result: no
configure:5884: checking whether it is safe to define __EXTENSIONS__
configure:5902: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:5902: $? = 0
configure:5909: result: yes
configure:5923: checking whether byte ordering is bigendian
configure:5938: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
conftest.c:27:9: error: unknown type name 'not'
conftest.c:27:15: error: expected '=', ',', ';', 'asm' or '__attribute__'
before 'universal'
conftest.c:27:15: error: unknown type name 'universal'
configure:5938: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h. */
| #ifndef __APPLE_CC__
| not a universal capable compiler
| #endif
| typedef int dummy;
|
configure:5983: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:5983: $? = 0
configure:6001: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
conftest.c: In function 'main':
conftest.c:33:4: error: unknown type name 'not'; did you mean 'ino_t'?
conftest.c:33:12: error: expected '=', ',', ';', 'asm' or '__attribute__'
before 'endian'
configure:6001: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h. */
| #include <sys/types.h>
| #include <sys/param.h>
|
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
| not big endian
| #endif
|
| ;
| return 0;
| }
configure:6129: result: no
configure:6154: checking for special C compiler options needed for large files
configure:6199: result: no
configure:6205: checking for _FILE_OFFSET_BITS value needed for large files
configure:6230: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:6230: $? = 0
configure:6262: result: no
configure:6377: checking build system type
configure:6391: result: x86_64-unknown-linux-gnu
configure:6411: checking host system type
configure:6424: result: x86_64-unknown-linux-gnu
configure:6465: checking how to print strings
configure:6492: result: printf
configure:6513: checking for a sed that does not truncate output
configure:6577: result: /usr/bin/sed
configure:6625: checking for ld used by gcc-8
configure:6692: result: /usr/bin/ld
configure:6699: checking if the linker (/usr/bin/ld) is GNU ld
configure:6714: result: yes
configure:6726: checking for BSD- or MS-compatible name lister (nm)
configure:6775: result: /usr/bin/nm -B
configure:6905: checking the name lister (/usr/bin/nm -B) interface
configure:6912: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:6915: /usr/bin/nm -B "conftest.o"
configure:6918: output
U _GLOBAL_OFFSET_TABLE_
0000000000000000 t _GLOBAL__sub_D_00099_0_some_variable
0000000000000000 t _GLOBAL__sub_I_00099_1_some_variable
U __asan_init
U __asan_register_globals
U __asan_unregister_globals
U __asan_version_mismatch_check_v8
0000000000000040 B __odr_asan.some_variable
0000000000000000 B some_variable
configure:6925: result: BSD nm
configure:6928: checking whether ln -s works
configure:6932: result: yes
configure:6940: checking the maximum length of command line arguments
configure:7071: result: 1572864
configure:7088: checking whether the shell understands some XSI constructs
configure:7098: result: yes
configure:7102: checking whether the shell understands "+="
configure:7108: result: yes
configure:7143: checking how to convert x86_64-unknown-linux-gnu file names to
x86_64-unknown-linux-gnu format
configure:7183: result: func_convert_file_noop
configure:7190: checking how to convert x86_64-unknown-linux-gnu file names to
toolchain format
configure:7210: result: func_convert_file_noop
configure:7217: checking for /usr/bin/ld option to reload object files
configure:7224: result: -r
configure:7298: checking for objdump
configure:7314: found /usr/bin/objdump
configure:7325: result: objdump
configure:7357: checking how to recognize dependent libraries
configure:7555: result: pass_all
configure:7640: checking for dlltool
configure:7670: result: no
configure:7700: checking how to associate runtime and link libraries
configure:7727: result: printf %s\n
configure:7787: checking for ar
configure:7803: found /usr/bin/ar
configure:7814: result: ar
configure:7851: checking for archiver @FILE support
configure:7868: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:7868: $? = 0
configure:7871: ar cru libconftest.a @conftest.lst >&5
ar: `u' modifier ignored since `D' is the default (see `U')
configure:7874: $? = 0
configure:7879: ar cru libconftest.a @conftest.lst >&5
ar: `u' modifier ignored since `D' is the default (see `U')
ar: conftest.o: No such file or directory
configure:7882: $? = 1
configure:7894: result: @
configure:7952: checking for strip
configure:7968: found /usr/bin/strip
configure:7979: result: strip
configure:8051: checking for ranlib
configure:8067: found /usr/bin/ranlib
configure:8078: result: ranlib
configure:8180: checking command to parse /usr/bin/nm -B output from gcc-8
object
configure:8300: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:8303: $? = 0
configure:8307: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[
]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' |
sed '/ __gnu_lto/d' \> conftest.nm
configure:8310: $? = 0
configure:8376: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c conftstm.o
>&5
configure:8379: $? = 0
configure:8417: result: ok
configure:8454: checking for sysroot
configure:8484: result: no
configure:8561: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:8564: $? = 0
configure:8753: checking for mt
configure:8769: found /usr/bin/mt
configure:8780: result: mt
configure:8803: checking if mt is a manifest tool
configure:8809: mt '-?'
configure:8817: result: no
configure:9456: checking for dlfcn.h
configure:9456: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:9456: $? = 0
configure:9456: result: yes
configure:9672: checking for objdir
configure:9687: result: .libs
configure:9958: checking if gcc-8 supports -fno-rtti -fno-exceptions
configure:9976: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -fno-rtti -fno-exceptions
conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not
for C
configure:9980: $? = 0
configure:9993: result: no
configure:10320: checking for gcc-8 option to produce PIC
configure:10327: result: -fPIC -DPIC
configure:10335: checking if gcc-8 PIC flag -fPIC -DPIC works
configure:10353: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -fPIC -DPIC -DPIC conftest.c >&5
configure:10357: $? = 0
configure:10370: result: yes
configure:10399: checking if gcc-8 static flag -static works
configure:10427: result: no
configure:10442: checking if gcc-8 supports -c -o file.o
configure:10463: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -o out/conftest2.o conftest.c >&5
configure:10467: $? = 0
configure:10489: result: yes
configure:10497: checking if gcc-8 supports -c -o file.o
configure:10544: result: yes
configure:10577: checking whether the gcc-8 linker (/usr/bin/ld -m elf_x86_64)
supports shared libraries
configure:11734: result: yes
configure:11974: checking dynamic linker characteristics
configure:12474: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address -Wl,-rpath -Wl,/foo
conftest.c >&5
configure:12474: $? = 0
configure:12708: result: GNU/Linux ld.so
configure:12815: checking how to hardcode library paths into programs
configure:12840: result: immediate
configure:13380: checking whether stripping libraries is possible
configure:13385: result: yes
configure:13420: checking if libtool supports shared libraries
configure:13422: result: yes
configure:13425: checking whether to build shared libraries
configure:13446: result: no
configure:13449: checking whether to build static libraries
configure:13453: result: yes
configure:13476: checking how to run the C++ preprocessor
configure:13503: g++ -E conftest.cpp
configure:13503: $? = 0
configure:13517: g++ -E conftest.cpp
conftest.cpp:28:10: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:13517: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:13542: result: g++ -E
configure:13562: g++ -E conftest.cpp
configure:13562: $? = 0
configure:13576: g++ -E conftest.cpp
conftest.cpp:28:10: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:13576: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:13745: checking for ld used by g++
configure:13812: result: /usr/bin/ld -m elf_x86_64
configure:13819: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld
configure:13834: result: yes
configure:13889: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64)
supports shared libraries
configure:14891: result: yes
configure:14927: g++ -c -g -O2 conftest.cpp >&5
configure:14930: $? = 0
configure:15450: checking for g++ option to produce PIC
configure:15457: result: -fPIC -DPIC
configure:15465: checking if g++ PIC flag -fPIC -DPIC works
configure:15483: g++ -c -g -O2 -fPIC -DPIC -DPIC conftest.cpp >&5
configure:15487: $? = 0
configure:15500: result: yes
configure:15523: checking if g++ static flag -static works
configure:15551: result: yes
configure:15563: checking if g++ supports -c -o file.o
configure:15584: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5
configure:15588: $? = 0
configure:15610: result: yes
configure:15615: checking if g++ supports -c -o file.o
configure:15662: result: yes
configure:15692: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64)
supports shared libraries
configure:15731: result: yes
configure:15872: checking dynamic linker characteristics
configure:16540: result: GNU/Linux ld.so
configure:16593: checking how to hardcode library paths into programs
configure:16618: result: immediate
configure:16715: checking for library containing pow
configure:16746: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c >&5
conftest.c:35:6: warning: conflicting types for built-in function 'pow'
[-Wbuiltin-declaration-mismatch]
/usr/bin/ld: /tmp/ccHizfzN.o: undefined reference to symbol 'pow@@GLIBC_2.2.5'
/usr/bin/ld: //lib/x86_64-linux-gnu/libm.so.6: error adding symbols: DSO
missing from command line
collect2: error: ld returned 1 exit status
configure:16746: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char pow ();
| int
| main ()
| {
| return pow ();
| ;
| return 0;
| }
configure:16746: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lm >&5
conftest.c:35:6: warning: conflicting types for built-in function 'pow'
[-Wbuiltin-declaration-mismatch]
configure:16746: $? = 0
configure:16763: result: -lm
configure:16771: checking for library containing clock_gettime
configure:16802: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lm >&5
configure:16802: $? = 0
configure:16819: result: none required
configure:16827: checking for library containing timer_create
configure:16858: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lm >&5
/usr/bin/ld: /tmp/ccRXI7sX.o: undefined reference to symbol
'timer_create@@GLIBC_2.3.3'
/usr/bin/ld: //lib/x86_64-linux-gnu/librt.so.1: error adding symbols: DSO
missing from command line
collect2: error: ld returned 1 exit status
configure:16858: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char timer_create ();
| int
| main ()
| {
| return timer_create ();
| ;
| return 0;
| }
configure:16858: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lrt -lm
>&5
configure:16858: $? = 0
configure:16875: result: -lrt
configure:16883: checking for library containing pthread_rwlock_tryrdlock
configure:16914: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lrt -lm
>&5
/usr/bin/ld: /tmp/ccMe6uD0.o: undefined reference to symbol
'pthread_rwlock_tryrdlock@@GLIBC_2.2.5'
/usr/bin/ld: //lib/x86_64-linux-gnu/libpthread.so.0: error adding symbols: DSO
missing from command line
collect2: error: ld returned 1 exit status
configure:16914: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char pthread_rwlock_tryrdlock ();
| int
| main ()
| {
| return pthread_rwlock_tryrdlock ();
| ;
| return 0;
| }
configure:16914: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lpthread
-lrt -lm >&5
configure:16914: $? = 0
configure:16931: result: -lpthread
configure:16939: checking for library containing pthread_rwlockattr_destroy
configure:16970: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lpthread
-lrt -lm >&5
configure:16970: $? = 0
configure:16987: result: none required
configure:16995: checking whether strerror_r is declared
configure:16995: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:16995: $? = 0
configure:16995: result: yes
configure:17008: checking for strerror_r
configure:17008: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lpthread
-lrt -lm >&5
configure:17008: $? = 0
configure:17008: result: yes
configure:17017: checking whether strerror_r returns char *
configure:17041: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:17041: $? = 0
configure:17079: result: yes
configure:17088: checking vmware.h usability
configure:17088: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
conftest.c:64:10: fatal error: vmware.h: No such file or directory
compilation terminated.
configure:17088: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <vmware.h>
configure:17088: result: no
configure:17088: checking vmware.h presence
configure:17088: gcc-8 -E conftest.c
conftest.c:31:10: fatal error: vmware.h: No such file or directory
#include <vmware.h>
^~~~~~~~~~
compilation terminated.
configure:17088: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| /* end confdefs.h. */
| #include <vmware.h>
configure:17088: result: no
configure:17088: checking for vmware.h
configure:17088: result: no
configure:17109: checking for MSVC x64 compiler
configure:17124: result: no
configure:17129: checking windows.h usability
configure:17129: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
conftest.c:64:10: fatal error: windows.h: No such file or directory
compilation terminated.
configure:17129: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <windows.h>
configure:17129: result: no
configure:17129: checking windows.h presence
configure:17129: gcc-8 -E conftest.c
conftest.c:31:10: fatal error: windows.h: No such file or directory
#include <windows.h>
^~~~~~~~~~~
compilation terminated.
configure:17129: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| /* end confdefs.h. */
| #include <windows.h>
configure:17129: result: no
configure:17129: checking for windows.h
configure:17129: result: no
configure:17351: checking for linux/netlink.h
configure:17351: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:17351: $? = 0
configure:17351: result: yes
configure:17407: checking for pkg-config
configure:17437: result: /usr/bin/pkg-config
configure:17499: checking whether compiling and linking against OpenSSL works
Trying link with SSL_LDFLAGS=; SSL_LIBS=-lssl -lcrypto; SSL_INCLUDES=
configure:17521: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lssl
-lcrypto -lpthread -lrt -lm >&5
configure:17521: $? = 0
configure:17523: result: yes
configure:17583: checking whether SSL_set_tlsext_host_name is declared
configure:17583: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:17583: $? = 0
configure:17583: result: yes
configure:17612: checking for capng_clear in -lcap-ng
configure:17637: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lcap-ng
-lpthread -lrt -lm >&5
/usr/bin/ld: cannot find -lcap-ng
collect2: error: ld returned 1 exit status
configure:17637: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| #define VSTUDIO_DDK 1
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define OPENSSL_SUPPORTS_SNI 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char capng_clear ();
| int
| main ()
| {
| return capng_clear ();
| ;
| return 0;
| }
configure:17646: result: no
configure:17660: WARNING: cannot find libcap-ng.
--user option will not be supported on Linux.
(you may use --disable-libcapng to suppress this warning).
configure:17693: checking for Python 2.x for x >= 7
configure:17726: result: /usr/bin/python2
configure:17746: checking for Python 3.x for x >= 4
configure:17779: result: /usr/bin/python3
configure:17799: checking for Python 2 or 3
configure:17817: result: /usr/bin/python2
configure:17831: checking for flake8
configure:17842: result: yes
configure:17852: checking for sphinx
configure:17863: result: yes
configure:17873: checking for dot
configure:17884: result: yes
configure:17894: checking net/if_dl.h usability
configure:17894: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
conftest.c:68:10: fatal error: net/if_dl.h: No such file or directory
compilation terminated.
configure:17894: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| #define VSTUDIO_DDK 1
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define OPENSSL_SUPPORTS_SNI 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <net/if_dl.h>
configure:17894: result: no
configure:17894: checking net/if_dl.h presence
configure:17894: gcc-8 -E conftest.c
conftest.c:35:10: fatal error: net/if_dl.h: No such file or directory
#include <net/if_dl.h>
^~~~~~~~~~~~~
compilation terminated.
configure:17894: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| #define VSTUDIO_DDK 1
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define OPENSSL_SUPPORTS_SNI 1
| /* end confdefs.h. */
| #include <net/if_dl.h>
configure:17894: result: no
configure:17894: checking for net/if_dl.h
configure:17894: result: no
configure:17973: checking whether strtok_r macro segfaults on some inputs
configure:18009: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lpthread
-lrt -lm >&5
configure:18009: $? = 0
configure:18009: ./conftest
configure:18009: $? = 0
configure:18019: result: no
configure:18028: checking whether AF_XDP is supported
configure:18037: checking bpf/libbpf.h usability
configure:18037: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:18037: $? = 0
configure:18037: result: yes
configure:18037: checking bpf/libbpf.h presence
configure:18037: gcc-8 -E conftest.c
configure:18037: $? = 0
configure:18037: result: yes
configure:18037: checking for bpf/libbpf.h
configure:18037: result: yes
configure:18045: checking linux/if_xdp.h usability
configure:18045: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:18045: $? = 0
configure:18045: result: yes
configure:18045: checking linux/if_xdp.h presence
configure:18045: gcc-8 -E conftest.c
configure:18045: $? = 0
configure:18045: result: yes
configure:18045: checking for linux/if_xdp.h
configure:18045: result: yes
configure:18071: checking whether sys_siglist is declared
configure:18071: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:18071: $? = 0
configure:18071: result: yes
configure:18083: checking for struct stat.st_mtim.tv_nsec
configure:18083: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:18083: $? = 0
configure:18083: result: yes
configure:18093: checking for struct stat.st_mtimensec
configure:18093: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
conftest.c: In function 'main':
conftest.c:44:13: error: 'struct stat' has no member named 'st_mtimensec'; did
you mean 'st_mtim'?
configure:18093: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| #define VSTUDIO_DDK 1
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define OPENSSL_SUPPORTS_SNI 1
| #define HAVE_AF_XDP 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| /* end confdefs.h. */
| #include <sys/stat.h>
|
| int
| main ()
| {
| static struct stat ac_aggr;
| if (ac_aggr.st_mtimensec)
| return 0;
| ;
| return 0;
| }
configure:18093: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
conftest.c: In function 'main':
conftest.c:44:20: error: 'struct stat' has no member named 'st_mtimensec'; did
you mean 'st_mtim'?
configure:18093: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| #define VSTUDIO_DDK 1
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define OPENSSL_SUPPORTS_SNI 1
| #define HAVE_AF_XDP 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| /* end confdefs.h. */
| #include <sys/stat.h>
|
| int
| main ()
| {
| static struct stat ac_aggr;
| if (sizeof ac_aggr.st_mtimensec)
| return 0;
| ;
| return 0;
| }
configure:18093: result: no
configure:18104: checking for struct ifreq.ifr_flagshigh
configure:18104: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
conftest.c: In function 'main':
conftest.c:44:12: error: 'struct ifreq' has no member named 'ifr_flagshigh'
configure:18104: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| #define VSTUDIO_DDK 1
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define OPENSSL_SUPPORTS_SNI 1
| #define HAVE_AF_XDP 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| /* end confdefs.h. */
| #include <net/if.h>
|
| int
| main ()
| {
| static struct ifreq ac_aggr;
| if (ac_aggr.ifr_flagshigh)
| return 0;
| ;
| return 0;
| }
configure:18104: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
conftest.c: In function 'main':
conftest.c:44:19: error: 'struct ifreq' has no member named 'ifr_flagshigh'
configure:18104: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| #define VSTUDIO_DDK 1
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define OPENSSL_SUPPORTS_SNI 1
| #define HAVE_AF_XDP 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| /* end confdefs.h. */
| #include <net/if.h>
|
| int
| main ()
| {
| static struct ifreq ac_aggr;
| if (sizeof ac_aggr.ifr_flagshigh)
| return 0;
| ;
| return 0;
| }
configure:18104: result: no
configure:18115: checking for struct mmsghdr.msg_len
configure:18115: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:18115: $? = 0
configure:18115: result: yes
configure:18126: checking for struct sockaddr_in6.sin6_scope_id
configure:18126: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:18126: $? = 0
configure:18126: result: yes
configure:18142: checking for mlockall
configure:18142: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lpthread
-lrt -lm >&5
configure:18142: $? = 0
configure:18142: result: yes
configure:18142: checking for strnlen
configure:18142: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lpthread
-lrt -lm >&5
configure:18142: $? = 0
configure:18142: result: yes
configure:18142: checking for getloadavg
configure:18142: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lpthread
-lrt -lm >&5
configure:18142: $? = 0
configure:18142: result: yes
configure:18142: checking for statvfs
configure:18142: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lpthread
-lrt -lm >&5
configure:18142: $? = 0
configure:18142: result: yes
configure:18142: checking for getmntent_r
configure:18142: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lpthread
-lrt -lm >&5
configure:18142: $? = 0
configure:18142: result: yes
configure:18142: checking for sendmmsg
configure:18142: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lpthread
-lrt -lm >&5
configure:18142: $? = 0
configure:18142: result: yes
configure:18142: checking for clock_gettime
configure:18142: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lpthread
-lrt -lm >&5
configure:18142: $? = 0
configure:18142: result: yes
configure:18154: checking mntent.h usability
configure:18154: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:18154: $? = 0
configure:18154: result: yes
configure:18154: checking mntent.h presence
configure:18154: gcc-8 -E conftest.c
configure:18154: $? = 0
configure:18154: result: yes
configure:18154: checking for mntent.h
configure:18154: result: yes
configure:18154: checking sys/statvfs.h usability
configure:18154: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:18154: $? = 0
configure:18154: result: yes
configure:18154: checking sys/statvfs.h presence
configure:18154: gcc-8 -E conftest.c
configure:18154: $? = 0
configure:18154: result: yes
configure:18154: checking for sys/statvfs.h
configure:18154: result: yes
configure:18154: checking linux/types.h usability
configure:18154: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:18154: $? = 0
configure:18154: result: yes
configure:18154: checking linux/types.h presence
configure:18154: gcc-8 -E conftest.c
configure:18154: $? = 0
configure:18154: result: yes
configure:18154: checking for linux/types.h
configure:18154: result: yes
configure:18154: checking linux/if_ether.h usability
configure:18154: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:18154: $? = 0
configure:18154: result: yes
configure:18154: checking linux/if_ether.h presence
configure:18154: gcc-8 -E conftest.c
configure:18154: $? = 0
configure:18154: result: yes
configure:18154: checking for linux/if_ether.h
configure:18154: result: yes
configure:18167: checking linux/net_namespace.h usability
configure:18167: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:18167: $? = 0
configure:18167: result: yes
configure:18167: checking linux/net_namespace.h presence
configure:18167: gcc-8 -E conftest.c
configure:18167: $? = 0
configure:18167: result: yes
configure:18167: checking for linux/net_namespace.h
configure:18167: result: yes
configure:18167: checking stdatomic.h usability
configure:18167: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:18167: $? = 0
configure:18167: result: yes
configure:18167: checking stdatomic.h presence
configure:18167: gcc-8 -E conftest.c
configure:18167: $? = 0
configure:18167: result: yes
configure:18167: checking for stdatomic.h
configure:18167: result: yes
configure:18167: checking bits/floatn-common.h usability
configure:18167: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:18167: $? = 0
configure:18167: result: yes
configure:18167: checking bits/floatn-common.h presence
configure:18167: gcc-8 -E conftest.c
configure:18167: $? = 0
configure:18167: result: yes
configure:18167: checking for bits/floatn-common.h
configure:18167: result: yes
configure:18179: checking for net/if_mib.h
configure:18179: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
conftest.c:57:10: fatal error: net/if_mib.h: No such file or directory
compilation terminated.
configure:18179: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| #define VSTUDIO_DDK 1
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define OPENSSL_SUPPORTS_SNI 1
| #define HAVE_AF_XDP 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1
| #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_GETLOADAVG 1
| #define HAVE_STATVFS 1
| #define HAVE_GETMNTENT_R 1
| #define HAVE_SENDMMSG 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_MNTENT_H 1
| #define HAVE_SYS_STATVFS_H 1
| #define HAVE_LINUX_TYPES_H 1
| #define HAVE_LINUX_IF_ETHER_H 1
| #define HAVE_LINUX_NET_NAMESPACE_H 1
| #define HAVE_STDATOMIC_H 1
| #define HAVE_BITS_FLOATN_COMMON_H 1
| /* end confdefs.h. */
| #include <sys/types.h>
| #include <net/if.h>
|
| #include <net/if_mib.h>
configure:18179: result: no
configure:18219: checking for library containing backtrace
configure:18250: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lpthread
-lrt -lm >&5
configure:18250: $? = 0
configure:18267: result: none required
configure:18279: checking linux/perf_event.h usability
configure:18279: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:18279: $? = 0
configure:18279: result: yes
configure:18279: checking linux/perf_event.h presence
configure:18279: gcc-8 -E conftest.c
configure:18279: $? = 0
configure:18279: result: yes
configure:18279: checking for linux/perf_event.h
configure:18279: result: yes
configure:18291: checking valgrind/valgrind.h usability
configure:18291: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:18291: $? = 0
configure:18291: result: yes
configure:18291: checking valgrind/valgrind.h presence
configure:18291: gcc-8 -E conftest.c
configure:18291: $? = 0
configure:18291: result: yes
configure:18291: checking for valgrind/valgrind.h
configure:18291: result: yes
configure:18301: checking for connect in -lsocket
configure:18326: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lsocket
-lpthread -lrt -lm >&5
/usr/bin/ld: cannot find -lsocket
collect2: error: ld returned 1 exit status
configure:18326: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| #define VSTUDIO_DDK 1
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define OPENSSL_SUPPORTS_SNI 1
| #define HAVE_AF_XDP 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1
| #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_GETLOADAVG 1
| #define HAVE_STATVFS 1
| #define HAVE_GETMNTENT_R 1
| #define HAVE_SENDMMSG 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_MNTENT_H 1
| #define HAVE_SYS_STATVFS_H 1
| #define HAVE_LINUX_TYPES_H 1
| #define HAVE_LINUX_IF_ETHER_H 1
| #define HAVE_LINUX_NET_NAMESPACE_H 1
| #define HAVE_STDATOMIC_H 1
| #define HAVE_BITS_FLOATN_COMMON_H 1
| #define HAVE_BACKTRACE 1
| #define HAVE_LINUX_PERF_EVENT_H 1
| #define HAVE_VALGRIND_VALGRIND_H 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char connect ();
| int
| main ()
| {
| return connect ();
| ;
| return 0;
| }
configure:18335: result: no
configure:18346: checking for library containing gethostbyname
configure:18377: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lpthread
-lrt -lm >&5
configure:18377: $? = 0
configure:18394: result: none required
configure:18402: checking XenServer release
configure:18414: result: none
configure:18426: checking for groff
configure:18437: result: yes
configure:18447: checking whether gcc-8 has <threads.h> that supports
thread_local
configure:18464: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lpthread
-lrt -lm >&5
configure:18464: $? = 0
configure:18472: result: yes
configure:18511: checking for library containing __atomic_load_8
configure:18542: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lpthread
-lrt -lm >&5
conftest.c:65:6: warning: conflicting types for built-in function
'__atomic_load_8' [-Wbuiltin-declaration-mismatch]
/usr/bin/ld: /tmp/cc7wZec1.o: in function `main':
/home/blp/nicira/ovs/_build/conftest.c:69: undefined reference to
`__atomic_load_8'
collect2: error: ld returned 1 exit status
configure:18542: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| #define VSTUDIO_DDK 1
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define OPENSSL_SUPPORTS_SNI 1
| #define HAVE_AF_XDP 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1
| #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_GETLOADAVG 1
| #define HAVE_STATVFS 1
| #define HAVE_GETMNTENT_R 1
| #define HAVE_SENDMMSG 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_MNTENT_H 1
| #define HAVE_SYS_STATVFS_H 1
| #define HAVE_LINUX_TYPES_H 1
| #define HAVE_LINUX_IF_ETHER_H 1
| #define HAVE_LINUX_NET_NAMESPACE_H 1
| #define HAVE_STDATOMIC_H 1
| #define HAVE_BITS_FLOATN_COMMON_H 1
| #define HAVE_BACKTRACE 1
| #define HAVE_LINUX_PERF_EVENT_H 1
| #define HAVE_VALGRIND_VALGRIND_H 1
| #define HAVE_THREAD_LOCAL 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char __atomic_load_8 ();
| int
| main ()
| {
| return __atomic_load_8 ();
| ;
| return 0;
| }
configure:18542: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -latomic
-lpthread -lrt -lm >&5
conftest.c:65:6: warning: conflicting types for built-in function
'__atomic_load_8' [-Wbuiltin-declaration-mismatch]
configure:18542: $? = 0
configure:18559: result: -latomic
configure:18567: checking whether gcc-8 supports GCC 4.0+ atomic built-ins
configure:18634: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -latomic
-lpthread -lrt -lm >&5
configure:18634: $? = 0
configure:18642: result: yes
configure:18649: checking value of __atomic_always_lock_free(1)
configure:18654: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -latomic
-lpthread -lrt -lm >&5
configure:18654: $? = 0
configure:18654: ./conftest
configure:18654: $? = 0
configure:18661: result: 1
configure:18670: checking value of __atomic_always_lock_free(2)
configure:18675: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -latomic
-lpthread -lrt -lm >&5
configure:18675: $? = 0
configure:18675: ./conftest
configure:18675: $? = 0
configure:18682: result: 1
configure:18691: checking value of __atomic_always_lock_free(4)
configure:18696: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -latomic
-lpthread -lrt -lm >&5
configure:18696: $? = 0
configure:18696: ./conftest
configure:18696: $? = 0
configure:18703: result: 1
configure:18712: checking value of __atomic_always_lock_free(8)
configure:18717: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -latomic
-lpthread -lrt -lm >&5
configure:18717: $? = 0
configure:18717: ./conftest
configure:18717: $? = 0
configure:18724: result: 1
configure:18733: checking for library containing aio_write
configure:18764: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -latomic
-lpthread -lrt -lm >&5
configure:18764: $? = 0
configure:18781: result: none required
configure:18799: checking for pthread_set_name_np
configure:18799: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -latomic
-lpthread -lrt -lm >&5
/usr/bin/ld: /tmp/ccWx4Our.o: in function `main':
/home/blp/nicira/ovs/_build/conftest.c:97: undefined reference to
`pthread_set_name_np'
collect2: error: ld returned 1 exit status
configure:18799: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| #define VSTUDIO_DDK 1
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define OPENSSL_SUPPORTS_SNI 1
| #define HAVE_AF_XDP 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1
| #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_GETLOADAVG 1
| #define HAVE_STATVFS 1
| #define HAVE_GETMNTENT_R 1
| #define HAVE_SENDMMSG 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_MNTENT_H 1
| #define HAVE_SYS_STATVFS_H 1
| #define HAVE_LINUX_TYPES_H 1
| #define HAVE_LINUX_IF_ETHER_H 1
| #define HAVE_LINUX_NET_NAMESPACE_H 1
| #define HAVE_STDATOMIC_H 1
| #define HAVE_BITS_FLOATN_COMMON_H 1
| #define HAVE_BACKTRACE 1
| #define HAVE_LINUX_PERF_EVENT_H 1
| #define HAVE_VALGRIND_VALGRIND_H 1
| #define HAVE_THREAD_LOCAL 1
| #define HAVE_GCC4_ATOMICS 1
| #define ATOMIC_ALWAYS_LOCK_FREE_1B 1
| #define ATOMIC_ALWAYS_LOCK_FREE_2B 1
| #define ATOMIC_ALWAYS_LOCK_FREE_4B 1
| #define ATOMIC_ALWAYS_LOCK_FREE_8B 1
| /* end confdefs.h. */
| /* Define pthread_set_name_np to an innocuous variant, in case <limits.h>
declares pthread_set_name_np.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define pthread_set_name_np innocuous_pthread_set_name_np
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char pthread_set_name_np (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef pthread_set_name_np
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char pthread_set_name_np ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined __stub_pthread_set_name_np || defined __stub___pthread_set_name_np
| choke me
| #endif
|
| int
| main ()
| {
| return pthread_set_name_np ();
| ;
| return 0;
| }
configure:18799: result: no
configure:18809: checking for pthread_setname_np() variant
configure:18826: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -latomic
-lpthread -lrt -lm >&5
configure:18826: $? = 0
configure:18852: result: glibc
configure:18867: checking whether __linux__ is defined
configure:18883: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:18883: $? = 0
configure:18890: result: true
configure:18900: checking linker output version information
configure:18908: result: libX-2.11.so.0.0.90)
configure:18947: checking whether g++ supports C++11 features by default
configure:19241: g++ -c -g -O2 conftest.cpp >&5
configure:19241: $? = 0
configure:19248: result: yes
configure:19935: checking atomic usability
configure:19935: g++ -c -g -O2 conftest.cpp >&5
configure:19935: $? = 0
configure:19935: result: yes
configure:19935: checking atomic presence
configure:19935: g++ -E conftest.cpp
configure:19935: $? = 0
configure:19935: result: yes
configure:19935: checking for atomic
configure:19935: result: yes
configure:19962: checking for working posix_memalign
configure:19986: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -latomic
-lpthread -lrt -lm >&5
configure:19986: $? = 0
configure:19986: ./conftest
configure:19986: $? = 0
configure:19996: result: yes
configure:20004: checking for ub_ctx_create in -lunbound
configure:20029: gcc-8 -o conftest -g -O2 -fno-diagnostics-show-caret
-fno-common -fno-omit-frame-pointer -fsanitize=address conftest.c -lunbound
-latomic -lpthread -lrt -lm >&5
configure:20029: $? = 0
configure:20038: result: yes
configure:20064: checking whether the preprocessor supports include_next
configure:20102: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Iconftestd1b -Iconftestd2
conftest.c >&5
configure:20102: $? = 0
configure:20123: result: yes
configure:20144: checking whether system header files limit the line length
configure:20167: result: no
configure:20193: checking for stdio.h
configure:20193: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:20193: $? = 0
configure:20193: result: yes
configure:20193: checking for string.h
configure:20193: result: yes
configure:20358: checking whether gcc-8 accepts -Werror
configure:20369: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror conftest.c >&5
configure:20369: $? = 0
configure:20382: result: yes
configure:20391: checking whether gcc-8 accepts -Wall
configure:20402: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wall conftest.c >&5
configure:20402: $? = 0
configure:20415: result: yes
configure:20425: checking whether gcc-8 accepts -Wextra
configure:20436: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wextra conftest.c >&5
configure:20436: $? = 0
configure:20449: result: yes
configure:20459: checking whether gcc-8 accepts -Wno-sign-compare
configure:20470: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wsign-compare conftest.c
>&5
configure:20470: $? = 0
configure:20483: result: yes
configure:20493: checking whether gcc-8 accepts -Wpointer-arith
configure:20504: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wpointer-arith conftest.c
>&5
configure:20504: $? = 0
configure:20517: result: yes
configure:20527: checking whether gcc-8 accepts -Wformat -Wformat-security
configure:20538: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wformat -Wformat-security
conftest.c >&5
configure:20538: $? = 0
configure:20551: result: yes
configure:20561: checking whether gcc-8 accepts -Wswitch-enum
configure:20572: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wswitch-enum conftest.c >&5
configure:20572: $? = 0
configure:20585: result: yes
configure:20595: checking whether gcc-8 accepts -Wunused-parameter
configure:20606: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wunused-parameter
conftest.c >&5
configure:20606: $? = 0
configure:20619: result: yes
configure:20629: checking whether gcc-8 accepts -Wbad-function-cast
configure:20640: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wbad-function-cast
conftest.c >&5
configure:20640: $? = 0
configure:20653: result: yes
configure:20663: checking whether gcc-8 accepts -Wcast-align
configure:20674: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wcast-align conftest.c >&5
configure:20674: $? = 0
configure:20687: result: yes
configure:20697: checking whether gcc-8 accepts -Wstrict-prototypes
configure:20708: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wstrict-prototypes
conftest.c >&5
configure:20708: $? = 0
configure:20721: result: yes
configure:20731: checking whether gcc-8 accepts -Wold-style-definition
configure:20742: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wold-style-definition
conftest.c >&5
configure:20742: $? = 0
configure:20755: result: yes
configure:20765: checking whether gcc-8 accepts -Wmissing-prototypes
configure:20776: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wmissing-prototypes
conftest.c >&5
configure:20776: $? = 0
configure:20789: result: yes
configure:20799: checking whether gcc-8 accepts -Wmissing-field-initializers
configure:20810: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wmissing-field-initializers
conftest.c >&5
configure:20810: $? = 0
configure:20823: result: yes
configure:20833: checking whether gcc-8 accepts -Wthread-safety
configure:20844: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wthread-safety conftest.c
>&5
gcc-8: error: unrecognized command line option '-Wthread-safety'; did you mean
'-fthread-jumps'?
configure:20844: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| #define VSTUDIO_DDK 1
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define OPENSSL_SUPPORTS_SNI 1
| #define HAVE_AF_XDP 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1
| #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_GETLOADAVG 1
| #define HAVE_STATVFS 1
| #define HAVE_GETMNTENT_R 1
| #define HAVE_SENDMMSG 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_MNTENT_H 1
| #define HAVE_SYS_STATVFS_H 1
| #define HAVE_LINUX_TYPES_H 1
| #define HAVE_LINUX_IF_ETHER_H 1
| #define HAVE_LINUX_NET_NAMESPACE_H 1
| #define HAVE_STDATOMIC_H 1
| #define HAVE_BITS_FLOATN_COMMON_H 1
| #define HAVE_BACKTRACE 1
| #define HAVE_LINUX_PERF_EVENT_H 1
| #define HAVE_VALGRIND_VALGRIND_H 1
| #define HAVE_THREAD_LOCAL 1
| #define HAVE_GCC4_ATOMICS 1
| #define ATOMIC_ALWAYS_LOCK_FREE_1B 1
| #define ATOMIC_ALWAYS_LOCK_FREE_2B 1
| #define ATOMIC_ALWAYS_LOCK_FREE_4B 1
| #define ATOMIC_ALWAYS_LOCK_FREE_8B 1
| #define HAVE_GLIBC_PTHREAD_SETNAME_NP 1
| #define HAVE_CXX11 1
| #define HAVE_ATOMIC 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_UNBOUND 1
| #define HAVE_STDIO_H 1
| #define HAVE_STRING_H 1
| /* end confdefs.h. */
| int x;
configure:20857: result: no
configure:20867: checking whether gcc-8 accepts -fno-strict-aliasing
configure:20878: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -fno-strict-aliasing
conftest.c >&5
configure:20878: $? = 0
configure:20891: result: yes
configure:20901: checking whether gcc-8 accepts -Wswitch-bool
configure:20912: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wswitch-bool conftest.c >&5
configure:20912: $? = 0
configure:20925: result: yes
configure:20935: checking whether gcc-8 accepts -Wlogical-not-parentheses
configure:20946: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wlogical-not-parentheses
conftest.c >&5
configure:20946: $? = 0
configure:20959: result: yes
configure:20969: checking whether gcc-8 accepts -Wsizeof-array-argument
configure:20980: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wsizeof-array-argument
conftest.c >&5
configure:20980: $? = 0
configure:20993: result: yes
configure:21003: checking whether gcc-8 accepts -Wbool-compare
configure:21014: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wbool-compare conftest.c
>&5
configure:21014: $? = 0
configure:21027: result: yes
configure:21037: checking whether gcc-8 accepts -Wshift-negative-value
configure:21048: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wshift-negative-value
conftest.c >&5
configure:21048: $? = 0
configure:21061: result: yes
configure:21071: checking whether gcc-8 accepts -Wduplicated-cond
configure:21082: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wduplicated-cond
conftest.c >&5
configure:21082: $? = 0
configure:21095: result: yes
configure:21105: checking whether gcc-8 accepts -Qunused-arguments
configure:21116: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Qunused-arguments
conftest.c >&5
gcc-8: error: unrecognized command line option '-Qunused-arguments'; did you
mean '-Wunused-parameter'?
configure:21116: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| #define VSTUDIO_DDK 1
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define OPENSSL_SUPPORTS_SNI 1
| #define HAVE_AF_XDP 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1
| #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_GETLOADAVG 1
| #define HAVE_STATVFS 1
| #define HAVE_GETMNTENT_R 1
| #define HAVE_SENDMMSG 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_MNTENT_H 1
| #define HAVE_SYS_STATVFS_H 1
| #define HAVE_LINUX_TYPES_H 1
| #define HAVE_LINUX_IF_ETHER_H 1
| #define HAVE_LINUX_NET_NAMESPACE_H 1
| #define HAVE_STDATOMIC_H 1
| #define HAVE_BITS_FLOATN_COMMON_H 1
| #define HAVE_BACKTRACE 1
| #define HAVE_LINUX_PERF_EVENT_H 1
| #define HAVE_VALGRIND_VALGRIND_H 1
| #define HAVE_THREAD_LOCAL 1
| #define HAVE_GCC4_ATOMICS 1
| #define ATOMIC_ALWAYS_LOCK_FREE_1B 1
| #define ATOMIC_ALWAYS_LOCK_FREE_2B 1
| #define ATOMIC_ALWAYS_LOCK_FREE_4B 1
| #define ATOMIC_ALWAYS_LOCK_FREE_8B 1
| #define HAVE_GLIBC_PTHREAD_SETNAME_NP 1
| #define HAVE_CXX11 1
| #define HAVE_ATOMIC 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_UNBOUND 1
| #define HAVE_STDIO_H 1
| #define HAVE_STRING_H 1
| /* end confdefs.h. */
| int x;
configure:21129: result: no
configure:21139: checking whether gcc-8 accepts -Wshadow
configure:21150: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wshadow conftest.c >&5
configure:21150: $? = 0
configure:21163: result: yes
configure:21173: checking whether gcc-8 accepts -Wmultistatement-macros
configure:21184: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wmultistatement-macros
conftest.c >&5
configure:21184: $? = 0
configure:21197: result: yes
configure:21207: checking whether gcc-8 accepts -Wcast-align=strict
configure:21218: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wcast-align=strict
conftest.c >&5
configure:21218: $? = 0
configure:21231: result: yes
configure:21241: checking whether gcc-8 accepts -Wno-null-pointer-arithmetic
configure:21252: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wnull-pointer-arithmetic
conftest.c >&5
gcc-8: error: unrecognized command line option '-Wnull-pointer-arithmetic'; did
you mean '-Wno-pointer-arith'?
configure:21252: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| #define VSTUDIO_DDK 1
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define OPENSSL_SUPPORTS_SNI 1
| #define HAVE_AF_XDP 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1
| #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_GETLOADAVG 1
| #define HAVE_STATVFS 1
| #define HAVE_GETMNTENT_R 1
| #define HAVE_SENDMMSG 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_MNTENT_H 1
| #define HAVE_SYS_STATVFS_H 1
| #define HAVE_LINUX_TYPES_H 1
| #define HAVE_LINUX_IF_ETHER_H 1
| #define HAVE_LINUX_NET_NAMESPACE_H 1
| #define HAVE_STDATOMIC_H 1
| #define HAVE_BITS_FLOATN_COMMON_H 1
| #define HAVE_BACKTRACE 1
| #define HAVE_LINUX_PERF_EVENT_H 1
| #define HAVE_VALGRIND_VALGRIND_H 1
| #define HAVE_THREAD_LOCAL 1
| #define HAVE_GCC4_ATOMICS 1
| #define ATOMIC_ALWAYS_LOCK_FREE_1B 1
| #define ATOMIC_ALWAYS_LOCK_FREE_2B 1
| #define ATOMIC_ALWAYS_LOCK_FREE_4B 1
| #define ATOMIC_ALWAYS_LOCK_FREE_8B 1
| #define HAVE_GLIBC_PTHREAD_SETNAME_NP 1
| #define HAVE_CXX11 1
| #define HAVE_ATOMIC 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_UNBOUND 1
| #define HAVE_STDIO_H 1
| #define HAVE_STRING_H 1
| /* end confdefs.h. */
| int x;
configure:21265: result: no
configure:21275: checking whether gcc-8 accepts
-Warray-bounds-pointer-arithmetic
configure:21286: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror
-Warray-bounds-pointer-arithmetic conftest.c >&5
gcc-8: error: unrecognized command line option
'-Warray-bounds-pointer-arithmetic'; did you mean '--warn-no-pointer-arith'?
configure:21286: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.11.90"
| #define PACKAGE_STRING "openvswitch 2.11.90"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.11.90"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_DECL_STRERROR_R 1
| #define HAVE_STRERROR_R 1
| #define STRERROR_R_CHAR_P 1
| #define VSTUDIO_DDK 1
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define OPENSSL_SUPPORTS_SNI 1
| #define HAVE_AF_XDP 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_STRUCT_MMSGHDR_MSG_LEN 1
| #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_GETLOADAVG 1
| #define HAVE_STATVFS 1
| #define HAVE_GETMNTENT_R 1
| #define HAVE_SENDMMSG 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_MNTENT_H 1
| #define HAVE_SYS_STATVFS_H 1
| #define HAVE_LINUX_TYPES_H 1
| #define HAVE_LINUX_IF_ETHER_H 1
| #define HAVE_LINUX_NET_NAMESPACE_H 1
| #define HAVE_STDATOMIC_H 1
| #define HAVE_BITS_FLOATN_COMMON_H 1
| #define HAVE_BACKTRACE 1
| #define HAVE_LINUX_PERF_EVENT_H 1
| #define HAVE_VALGRIND_VALGRIND_H 1
| #define HAVE_THREAD_LOCAL 1
| #define HAVE_GCC4_ATOMICS 1
| #define ATOMIC_ALWAYS_LOCK_FREE_1B 1
| #define ATOMIC_ALWAYS_LOCK_FREE_2B 1
| #define ATOMIC_ALWAYS_LOCK_FREE_4B 1
| #define ATOMIC_ALWAYS_LOCK_FREE_8B 1
| #define HAVE_GLIBC_PTHREAD_SETNAME_NP 1
| #define HAVE_CXX11 1
| #define HAVE_ATOMIC 1
| #define HAVE_POSIX_MEMALIGN 1
| #define HAVE_UNBOUND 1
| #define HAVE_STDIO_H 1
| #define HAVE_STRING_H 1
| /* end confdefs.h. */
| int x;
configure:21299: result: no
configure:21309: checking whether gcc-8 accepts -Wno-unused
configure:21320: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wunused conftest.c >&5
configure:21320: $? = 0
configure:21333: result: yes
configure:21350: checking whether gcc-8 accepts -Wno-unused-parameter
configure:21361: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address -Werror -Wunused-parameter
conftest.c >&5
configure:21361: $? = 0
configure:21374: result: yes
configure:21415: checking target hint for cgcc
configure:21429: result: x86_64
configure:28589: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:28589: $? = 0
configure:28610: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:28610: $? = 0
configure:28631: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:28631: $? = 0
configure:28652: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:28652: $? = 0
configure:28673: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
configure:28673: $? = 0
configure:28688: checking whether dpdk datapath is enabled
configure:28691: result: no
configure:29589: gcc-8 -c -g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address conftest.c >&5
conftest.c:75:1: note: #pragma message: Checking for pragma message
configure:29589: $? = 0
configure:29645: checking whether make supports nested variables
configure:29662: result: yes
configure:29783: checking that generated files are newer than configure
configure:29789: result: done
configure:29936: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by openvswitch config.status 2.11.90, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on sigill
config.status:1343: creating lib/stdio.h
config.status:1343: creating lib/string.h
config.status:1343: creating ovsdb/libovsdb.sym
config.status:1343: creating ofproto/libofproto.sym
config.status:1343: creating lib/libsflow.sym
config.status:1343: creating lib/libopenvswitch.sym
config.status:1343: creating ovn/lib/libovn.sym
config.status:1343: creating vtep/libvtep.sym
config.status:1343: creating Makefile
config.status:1343: creating datapath/Makefile
config.status:1343: creating datapath/linux/Kbuild
config.status:1343: creating datapath/linux/Makefile
config.status:1343: creating datapath/linux/Makefile.main
config.status:1343: creating tests/atlocal
config.status:1343: creating lib/libopenvswitch.pc
config.status:1343: creating lib/libsflow.pc
config.status:1343: creating ofproto/libofproto.pc
config.status:1343: creating ovsdb/libovsdb.pc
config.status:1343: creating include/openvswitch/version.h
config.status:1343: creating config.h
config.status:1557: executing tests/atconfig commands
config.status:1557: executing depfiles commands
config.status:1657: cd . && sed -e '/# am--include-marker/d' Makefile
| make -f - am--depfiles
make: Nothing to be done for 'am--depfiles'.
config.status:1662: $? = 0
config.status:1557: executing libtool commands
config.status:1557: executing include/openflow/openflow.h.stamp commands
config.status:1557: executing utilities/bugtool/dummy commands
config.status:1557: executing ovn/dummy commands
config.status:1557: executing ovn/utilities/dummy commands
config.status:1557: executing ipsec/dummy commands
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_build=x86_64-unknown-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=set
ac_cv_env_CC_value=gcc-8
ac_cv_env_CFLAGS_set=set
ac_cv_env_CFLAGS_value='-g -O2 -fno-diagnostics-show-caret -fno-common
-fno-omit-frame-pointer -fsanitize=address'
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_DPDK_CFLAGS_set=
ac_cv_env_DPDK_CFLAGS_value=
ac_cv_env_DPDK_LIBS_set=
ac_cv_env_DPDK_LIBS_value=
ac_cv_env_KARCH_set=set
ac_cv_env_KARCH_value=i386
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_PKG_CONFIG_LIBDIR_set=
ac_cv_env_PKG_CONFIG_LIBDIR_value=
ac_cv_env_PKG_CONFIG_PATH_set=
ac_cv_env_PKG_CONFIG_PATH_value=
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_func_clock_gettime=yes
ac_cv_func_getloadavg=yes
ac_cv_func_getmntent_r=yes
ac_cv_func_mlockall=yes
ac_cv_func_pthread_set_name_np=no
ac_cv_func_sendmmsg=yes
ac_cv_func_statvfs=yes
ac_cv_func_strerror_r=yes
ac_cv_func_strerror_r_char_p=yes
ac_cv_func_strnlen=yes
ac_cv_have_decl_SSL_set_tlsext_host_name=yes
ac_cv_have_decl_strerror_r=yes
ac_cv_have_decl_sys_siglist=yes
ac_cv_header_atomic=yes
ac_cv_header_bits_floatn_common_h=yes
ac_cv_header_bpf_libbpf_h=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_linux_if_ether_h=yes
ac_cv_header_linux_if_xdp_h=yes
ac_cv_header_linux_net_namespace_h=yes
ac_cv_header_linux_netlink_h=yes
ac_cv_header_linux_perf_event_h=yes
ac_cv_header_linux_types_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_minix_config_h=no
ac_cv_header_mntent_h=yes
ac_cv_header_net_if_dl_h=no
ac_cv_header_net_if_mib_h=no
ac_cv_header_stdatomic_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdio_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_statvfs_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_header_valgrind_valgrind_h=yes
ac_cv_header_vmware_h=no
ac_cv_header_windows_h=no
ac_cv_host=x86_64-unknown-linux-gnu
ac_cv_lib_cap_ng_capng_clear=no
ac_cv_lib_socket_connect=no
ac_cv_lib_unbound_ub_ctx_create=yes
ac_cv_member_struct_ifreq_ifr_flagshigh=no
ac_cv_member_struct_mmsghdr_msg_len=yes
ac_cv_member_struct_sockaddr_in6_sin6_scope_id=yes
ac_cv_member_struct_stat_st_mtim_tv_nsec=yes
ac_cv_member_struct_stat_st_mtimensec=no
ac_cv_objext=o
ac_cv_path_EGREP='/usr/bin/grep -E'
ac_cv_path_FGREP='/usr/bin/grep -F'
ac_cv_path_GREP=/usr/bin/grep
ac_cv_path_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_SED=/usr/bin/sed
ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/usr/bin/mkdir
ac_cv_prog_AWK=mawk
ac_cv_prog_CPP='gcc-8 -E'
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc-8
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_MANIFEST_TOOL=mt
ac_cv_prog_ac_ct_OBJDUMP=objdump
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_c99=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_prog_make_make_set=yes
ac_cv_safe_to_define___extensions__=yes
ac_cv_search___atomic_load_8=-latomic
ac_cv_search_aio_write='none required'
ac_cv_search_backtrace='none required'
ac_cv_search_clock_gettime='none required'
ac_cv_search_gethostbyname='none required'
ac_cv_search_pow=-lm
ac_cv_search_pthread_rwlock_tryrdlock=-lpthread
ac_cv_search_pthread_rwlockattr_destroy='none required'
ac_cv_search_timer_create=-lrt
ac_cv_sparse_target=x86_64
ac_cv_sys_file_offset_bits=no
ac_cv_sys_largefile_CC=no
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
am_cv_make_support_nested_variables=yes
am_cv_prog_cc_c_o=yes
am_cv_prog_tar_pax=gnutar
ax_cv_cxx_compile_cxx11=yes
ax_cv_func_posix_memalign_works=yes
cl_cv_x64=no
gl_cv_have_include_next=yes
gl_cv_next_stdio_h='<stdio.h>'
gl_cv_next_string_h='<string.h>'
gl_cv_pragma_columns=no
lt_cv_ar_at_file=@
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_nm_interface='BSD nm'
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_LDCXX='/usr/bin/ld -m elf_x86_64'
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_mainfest_tool=no
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_pic='-fPIC -DPIC'
lt_cv_prog_compiler_pic_CXX='-fPIC -DPIC'
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_pic_works_CXX=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=no
lt_cv_prog_compiler_static_works_CXX=yes
lt_cv_prog_gnu_ld=yes
lt_cv_prog_gnu_ldcxx=yes
lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
lt_cv_shlibpath_overrides_runpath=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[
]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/
{\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/
{"\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^
]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\)
\(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\)
\([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int
\1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
lt_cv_sys_max_cmd_len=1572864
lt_cv_to_host_file_cmd=func_convert_file_noop
lt_cv_to_tool_file_cmd=func_convert_file_noop
ovs_cv__Qunused_arguments=no
ovs_cv__Wall=yes
ovs_cv__Warray_bounds_pointer_arithmetic=no
ovs_cv__Wbad_function_cast=yes
ovs_cv__Wbool_compare=yes
ovs_cv__Wcast_align=yes
ovs_cv__Wcast_align_strict=yes
ovs_cv__Wduplicated_cond=yes
ovs_cv__Werror=yes
ovs_cv__Wextra=yes
ovs_cv__Wformat_Wformat_security=yes
ovs_cv__Wlogical_not_parentheses=yes
ovs_cv__Wmissing_field_initializers=yes
ovs_cv__Wmissing_prototypes=yes
ovs_cv__Wmultistatement_macros=yes
ovs_cv__Wno_null_pointer_arithmetic=no
ovs_cv__Wno_sign_compare=yes
ovs_cv__Wno_unused=yes
ovs_cv__Wno_unused_parameter=yes
ovs_cv__Wold_style_definition=yes
ovs_cv__Wpointer_arith=yes
ovs_cv__Wshadow=yes
ovs_cv__Wshift_negative_value=yes
ovs_cv__Wsizeof_array_argument=yes
ovs_cv__Wstrict_prototypes=yes
ovs_cv__Wswitch_bool=yes
ovs_cv__Wswitch_enum=yes
ovs_cv__Wthread_safety=no
ovs_cv__Wunused_parameter=yes
ovs_cv__fno_strict_aliasing=yes
ovs_cv_atomic_always_lock_free_1=1
ovs_cv_atomic_always_lock_free_2=1
ovs_cv_atomic_always_lock_free_4=1
ovs_cv_atomic_always_lock_free_8=1
ovs_cv_dot=yes
ovs_cv_flake8=yes
ovs_cv_gcc4_atomics=yes
ovs_cv_groff=yes
ovs_cv_linux=true
ovs_cv_pthread_setname_np=glibc
ovs_cv_python2=/usr/bin/python2
ovs_cv_python3=/usr/bin/python3
ovs_cv_python=/usr/bin/python2
ovs_cv_sphinx=yes
ovs_cv_strtok_r_bug=no
ovs_cv_thread_local=yes
ovs_cv_xsversion=none
## ----------------- ##
## Output variables. ##
## ----------------- ##
ACLOCAL='${SHELL} /home/blp/nicira/ovs/build-aux/missing aclocal-1.16'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='$${TAR-tar}'
AM_BACKSLASH='\'
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='0'
AM_V='$(V)'
AR='ar'
AUTOCONF='${SHELL} /home/blp/nicira/ovs/build-aux/missing autoconf'
AUTOHEADER='${SHELL} /home/blp/nicira/ovs/build-aux/missing autoheader'
AUTOM4TE='${SHELL} /home/blp/nicira/ovs/build-aux/missing autom4te'
AUTOMAKE='${SHELL} /home/blp/nicira/ovs/build-aux/missing automake-1.16'
AWK='mawk'
CAPNG_LDADD=''
CC='$(if $(C:0=),env REAL_CC="gcc-8" CHECK="$(SPARSE) $(SPARSE_WERROR) -I
$(top_srcdir)/include/sparse $(SPARSEFLAGS) $(SPARSE_EXTRA_INCLUDES) " cgcc
$(CGCCFLAGS),gcc-8)'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2 -fno-diagnostics-show-caret -fno-common -fno-omit-frame-pointer
-fsanitize=address'
CGCCFLAGS='-target=x86_64'
CPP='gcc-8 -E'
CPPFLAGS=''
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-g -O2'
CYGPATH_W='echo'
DBDIR='${sysconfdir}/${PACKAGE}'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
DLLTOOL='false'
DPDK_CFLAGS=''
DPDK_LIBS=''
DPDK_NETDEV_FALSE=''
DPDK_NETDEV_TRUE='#'
DPDK_vswitchd_LDFLAGS=''
DSYMUTIL=''
DUMPBIN=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/usr/bin/grep -E'
ENABLE_SPARSE_BY_DEFAULT_FALSE='#'
ENABLE_SPARSE_BY_DEFAULT_TRUE=''
ESX_FALSE=''
ESX_TRUE='#'
EXEEXT=''
FGREP='/usr/bin/grep -F'
FLAKE8_WERROR=''
GREP='/usr/bin/grep'
HAVE_CXX11='1'
HAVE_CXX_FALSE='#'
HAVE_CXX_TRUE=''
HAVE_DOT_FALSE='#'
HAVE_DOT_TRUE=''
HAVE_FLAKE8_FALSE='#'
HAVE_FLAKE8_TRUE=''
HAVE_GROFF_FALSE='#'
HAVE_GROFF_TRUE=''
HAVE_IF_DL_FALSE=''
HAVE_IF_DL_TRUE='#'
HAVE_LIBCAPNG=''
HAVE_LIBCAPNG_FALSE=''
HAVE_LIBCAPNG_TRUE='#'
HAVE_NETLINK_FALSE='#'
HAVE_NETLINK_TRUE=''
HAVE_OPENSSL='yes'
HAVE_OPENSSL_FALSE='#'
HAVE_OPENSSL_TRUE=''
HAVE_POSIX_AIO_FALSE='#'
HAVE_POSIX_AIO_TRUE=''
HAVE_PYTHON2='yes'
HAVE_PYTHON2_FALSE='#'
HAVE_PYTHON2_TRUE=''
HAVE_PYTHON3='yes'
HAVE_PYTHON3_FALSE='#'
HAVE_PYTHON3_TRUE=''
HAVE_PYTHON='yes'
HAVE_PYTHON_FALSE='#'
HAVE_PYTHON_TRUE=''
HAVE_SPHINX_FALSE='#'
HAVE_SPHINX_TRUE=''
HAVE_UNBOUND='yes'
HAVE_UNBOUND_FALSE='#'
HAVE_UNBOUND_TRUE=''
HAVE_WNO_UNUSED_FALSE='#'
HAVE_WNO_UNUSED_PARAMETER_FALSE='#'
HAVE_WNO_UNUSED_PARAMETER_TRUE=''
HAVE_WNO_UNUSED_TRUE=''
INCLUDE_NEXT='include_next'
INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
KARCH='i386'
KBUILD=''
LD='/usr/bin/ld -m elf_x86_64'
LDFLAGS=''
LIBBPF_LDADD=' -lbpf -lelf'
LIBOBJS=''
LIBS='-latomic -lpthread -lrt -lm -lunbound'
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LINUX_ENABLED_FALSE=''
LINUX_ENABLED_TRUE='#'
LINUX_FALSE='#'
LINUX_TRUE=''
LIPO=''
LN_S='ln -s'
LOGDIR='${localstatedir}/log/${PACKAGE}'
LTLIBOBJS=''
LT_AGE='0'
LT_CURRENT='0'
LT_REVISION='0'
MAKEINFO='${SHELL} /home/blp/nicira/ovs/build-aux/missing makeinfo'
MANIFEST_TOOL=':'
MKDIR_P='/usr/bin/mkdir -p'
MSVC64_LDFLAGS=''
MSVC_CFLAGS=''
MSVC_PLATFORM='x86'
NDEBUG_FALSE=''
NDEBUG_TRUE='#'
NEXT_AS_FIRST_DIRECTIVE_STDIO_H='<stdio.h>'
NEXT_AS_FIRST_DIRECTIVE_STRING_H='<string.h>'
NEXT_STDIO_H='<stdio.h>'
NEXT_STRING_H='<string.h>'
NM='/usr/bin/nm -B'
NMEDIT=''
OBJDUMP='objdump'
OBJEXT='o'
OPENSSL_SUPPORTS_SNI='yes'
OTOOL64=''
OTOOL=''
OVS_CFLAGS=' -Werror -Werror'
OVS_CTAGS_IDENTIFIERS_LIST='-I "OVS_REQ_RDLOCK+ OVS_ACQ_RDLOCK+ OVS_REQ_WRLOCK+
OVS_ACQ_WRLOCK+ OVS_REQUIRES+ OVS_ACQUIRES+ OVS_TRY_WRLOCK+ OVS_TRY_RDLOCK+
OVS_TRY_LOCK+ OVS_GUARDED_BY+ OVS_EXCLUDED+ OVS_RELEASES+ OVS_ACQ_BEFORE+
OVS_ACQ_AFTER+ "'
OVS_LDFLAGS=''
OVS_LTINFO='-release 2.11 -version-info 0:90'
PACKAGE='openvswitch'
PACKAGE_BUGREPORT='[email protected]'
PACKAGE_NAME='openvswitch'
PACKAGE_STRING='openvswitch 2.11.90'
PACKAGE_TARNAME='openvswitch'
PACKAGE_URL=''
PACKAGE_VERSION='2.11.90'
PATH_SEPARATOR=':'
PKG_CONFIG='/usr/bin/pkg-config'
PKG_CONFIG_LIBDIR=''
PKG_CONFIG_PATH=''
PKIDIR='${localstatedir}/lib/openvswitch/pki'
PRAGMA_COLUMNS=''
PRAGMA_SYSTEM_HEADER='#pragma GCC system_header'
PTHREAD_INCLUDES=''
PTHREAD_LDFLAGS=''
PTHREAD_LIBS=''
PTHREAD_WIN32_DIR_DLL=''
PTHREAD_WIN32_DIR_DLL_WIN_FORM=''
PYTHON2='/usr/bin/python2'
PYTHON3='/usr/bin/python3'
PYTHON='/usr/bin/python2'
RANLIB='ranlib'
RUNDIR='${localstatedir}/run/openvswitch'
SED='/usr/bin/sed'
SET_MAKE=''
SHELL='/bin/bash'
SPARSE='sparse'
SPARSEFLAGS='-m64'
SPARSE_EXTRA_INCLUDES='-I /usr/local/include -I /usr/include/x86_64-linux-gnu '
SPARSE_WERROR='-Wsparse-error'
SSL_DIR=''
SSL_INCLUDES=''
SSL_LDFLAGS=''
SSL_LIBS='-lssl -lcrypto'
STRIP='strip'
SUPPORT_AF_XDP_FALSE='#'
SUPPORT_AF_XDP_TRUE=''
VERSION='2.11.90'
VSTUDIO_CONFIG=''
VSTUDIO_DDK_FALSE=''
VSTUDIO_DDK_TRUE='#'
VSTUDIO_WIN10_FALSE='#'
VSTUDIO_WIN10_TRUE=''
VSTUDIO_WIN8_1_FALSE='#'
VSTUDIO_WIN8_1_TRUE=''
VSTUDIO_WIN8_FALSE='#'
VSTUDIO_WIN8_TRUE=''
WARNING_FLAGS=' -Wall -Wextra -Wno-sign-compare -Wpointer-arith -Wformat
-Wformat-security -Wswitch-enum -Wunused-parameter -Wbad-function-cast
-Wcast-align -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes
-Wmissing-field-initializers -fno-strict-aliasing -Wswitch-bool
-Wlogical-not-parentheses -Wsizeof-array-argument -Wbool-compare
-Wshift-negative-value -Wduplicated-cond -Wshadow -Wmultistatement-macros
-Wcast-align=strict'
WIN32_FALSE=''
WIN32_TRUE='#'
ac_ct_AR='ar'
ac_ct_CC='gcc-8'
ac_ct_CXX='g++'
ac_ct_DUMPBIN=''
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE='#'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__isrc=' -I$(srcdir)'
am__leading_dot='.'
am__nodep='_no'
am__quote=''
am__tar='tar --format=posix -chf - "$$tardir"'
am__untar='tar -xf -'
bindir='${exec_prefix}/bin'
build='x86_64-unknown-linux-gnu'
build_alias=''
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='unknown'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host='x86_64-unknown-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='unknown'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /home/blp/nicira/ovs/build-aux/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='/var'
mandir='${datarootdir}/man'
mkdir_p='$(MKDIR_P)'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr'
program_transform_name='s,x,x,'
psdir='${docdir}'
runstatedir='${localstatedir}/run'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
## ----------- ##
## confdefs.h. ##
## ----------- ##
/* confdefs.h */
#define PACKAGE_NAME "openvswitch"
#define PACKAGE_TARNAME "openvswitch"
#define PACKAGE_VERSION "2.11.90"
#define PACKAGE_STRING "openvswitch 2.11.90"
#define PACKAGE_BUGREPORT "[email protected]"
#define PACKAGE_URL ""
#define PACKAGE "openvswitch"
#define VERSION "2.11.90"
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define __EXTENSIONS__ 1
#define _ALL_SOURCE 1
#define _GNU_SOURCE 1
#define _POSIX_PTHREAD_SEMANTICS 1
#define _TANDEM_SOURCE 1
#define HAVE_DLFCN_H 1
#define LT_OBJDIR ".libs/"
#define HAVE_DECL_STRERROR_R 1
#define HAVE_STRERROR_R 1
#define STRERROR_R_CHAR_P 1
#define VSTUDIO_DDK 1
#define HAVE_NETLINK 1
#define HAVE_OPENSSL 1
#define OPENSSL_SUPPORTS_SNI 1
#define HAVE_AF_XDP 1
#define HAVE_DECL_SYS_SIGLIST 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_STRUCT_MMSGHDR_MSG_LEN 1
#define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1
#define HAVE_MLOCKALL 1
#define HAVE_STRNLEN 1
#define HAVE_GETLOADAVG 1
#define HAVE_STATVFS 1
#define HAVE_GETMNTENT_R 1
#define HAVE_SENDMMSG 1
#define HAVE_CLOCK_GETTIME 1
#define HAVE_MNTENT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_LINUX_TYPES_H 1
#define HAVE_LINUX_IF_ETHER_H 1
#define HAVE_LINUX_NET_NAMESPACE_H 1
#define HAVE_STDATOMIC_H 1
#define HAVE_BITS_FLOATN_COMMON_H 1
#define HAVE_BACKTRACE 1
#define HAVE_LINUX_PERF_EVENT_H 1
#define HAVE_VALGRIND_VALGRIND_H 1
#define HAVE_THREAD_LOCAL 1
#define HAVE_GCC4_ATOMICS 1
#define ATOMIC_ALWAYS_LOCK_FREE_1B 1
#define ATOMIC_ALWAYS_LOCK_FREE_2B 1
#define ATOMIC_ALWAYS_LOCK_FREE_4B 1
#define ATOMIC_ALWAYS_LOCK_FREE_8B 1
#define HAVE_GLIBC_PTHREAD_SETNAME_NP 1
#define HAVE_CXX11 1
#define HAVE_ATOMIC 1
#define HAVE_POSIX_MEMALIGN 1
#define HAVE_UNBOUND 1
#define HAVE_STDIO_H 1
#define HAVE_STRING_H 1
#define HAVE_TCA_FLOWER_KEY_ENC_IP_TTL_MASK 1
#define HAVE_TCA_VLAN_PUSH_VLAN_PRIORITY 1
#define HAVE_TCA_TUNNEL_KEY_ENC_TTL 1
#define HAVE_TCA_PEDIT_KEY_EX_HDR_TYPE_UDP 1
#define HAVE_TCA_SKBEDIT_FLAGS 1
#define HAVE_PRAGMA_MESSAGE 1
configure: exit 0
_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev