Skip to content

Instantly share code, notes, and snippets.

@drizzt
Created May 22, 2017 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drizzt/5e8ac80435475b9919907d0779bcc915 to your computer and use it in GitHub Desktop.
Save drizzt/5e8ac80435475b9919907d0779bcc915 to your computer and use it in GitHub Desktop.
## ------------------------------ ##
## openvswitch 2.7.90 test suite. ##
## ------------------------------ ##
testsuite: command line was:
$ ./tests/testsuite -C tests AUTOTEST_PATH=utilities:vswitchd:ovsdb:vtep:tests::ovn/controller-vtep:ovn/northd:ovn/utilities:ovn/controller -v 1030
## --------- ##
## Platform. ##
## --------- ##
hostname = bananapi
uname -m = armv7l
uname -r = 4.9.18-gnu-r201703261106-1-grsec
uname -s = Linux
uname -v = #1 SMP Sat Apr 1 14:05:49 UTC 2017
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = unknown
/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/drizzt/ovs/utilities
PATH: /home/drizzt/ovs/vswitchd
PATH: /home/drizzt/ovs/ovsdb
PATH: /home/drizzt/ovs/vtep
PATH: /home/drizzt/ovs/tests
PATH: /home/drizzt/ovs
PATH: /home/drizzt/ovs/ovn/controller-vtep
PATH: /home/drizzt/ovs/ovn/northd
PATH: /home/drizzt/ovs/ovn/utilities
PATH: /home/drizzt/ovs/ovn/controller
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /usr/lib/jvm/default/bin
PATH: /usr/bin/site_perl
PATH: /usr/bin/vendor_perl
PATH: /usr/bin/core_perl
PATH: /home/drizzt/bin
testsuite: atconfig:
| # Configurable variable values for building test suites.
| # Generated by ./config.status.
| # Copyright (C) 2012 Free Software Foundation, Inc.
|
| # The test suite will define top_srcdir=/../.. etc.
| at_testdir='tests'
| abs_builddir='/home/drizzt/ovs/tests'
| at_srcdir='.'
| abs_srcdir='/home/drizzt/ovs/tests'
| at_top_srcdir='..'
| abs_top_srcdir='/home/drizzt/ovs'
| at_top_build_prefix='../'
| abs_top_builddir='/home/drizzt/ovs'
|
| # Backward compatibility with Autotest <= 2.59b:
| at_top_builddir=$at_top_build_prefix
|
| AUTOTEST_PATH='tests'
|
| SHELL=${CONFIG_SHELL-'/bin/sh'}
testsuite: atlocal:
| # -*- shell-script -*-
| HAVE_OPENSSL='yes'
| HAVE_PYTHON='yes'
| HAVE_PYTHON3='yes'
| EGREP='/usr/bin/grep -E'
| PERL='/usr/bin/perl'
|
| if test x"$PYTHON" = x; then
| PYTHON='/usr/bin/python2.7'
| fi
|
| if test x"$PYTHON3" = x; then
| PYTHON3='/usr/bin/python3'
| fi
|
| PYTHONPATH=$abs_top_srcdir/python:$abs_top_builddir/tests:$PYTHONPATH
| export PYTHONPATH
|
| PYTHONIOENCODING=utf_8
| export PYTHONIOENCODING
|
| # PYTHONDONTWRITEBYTECODE=yes keeps Python from creating .pyc and .pyo
| # files. Creating .py[co] works OK for any given version of Open
| # vSwitch, but it causes trouble if you switch from a version with
| # foo/__init__.py into an (older) version with plain foo.py, since
| # foo/__init__.pyc will cause Python to ignore foo.py.
| PYTHONDONTWRITEBYTECODE=yes
| export PYTHONDONTWRITEBYTECODE
|
| # Test whether the current working directory name is all ASCII
| # characters. Some Python code doesn't tolerate non-ASCII characters
| # in filenames very well, so if the current working directory is
| # non-ASCII then we skip the tests that run those programs.
| #
| # This would be just papering over a real problem, except that the
| # tests that we skip are launched from initscripts and thus normally
| # run in system directories with ASCII names. (This problem only came
| # up at all because the Debian autobuilders do build in a top-level
| # directory named /«BUILDDIR».)
| case `pwd | tr -d ' -~'` in
| '') non_ascii_cwd=false ;;
| *) non_ascii_cwd=true
| esac
|
| # Enable malloc debugging features.
| case `uname` in
| Linux)
| MALLOC_PERTURB_=165; export MALLOC_PERTURB_
|
| # Before glibc 2.11, the feature enabled by MALLOC_CHECK_ was not
| # thread-safe. See https://bugzilla.redhat.com/show_bug.cgi?id=585674 and
| # in particular the patch attached there, which was applied to glibc CVS as
| # "Restore locking in free_check." between 1.11 and 1.11.1.
| vswitchd=$abs_top_builddir/vswitchd/ovs-vswitchd
| glibc=`ldd $vswitchd | sed -n 's/^ libc\.[^ ]* => \([^ ]*\) .*/\1/p'`
| glibc_version=`$glibc | sed -n '1s/.*version \([0-9]\{1,\}\.[0-9]\{1,\}\).*/\1/p'`
| case $glibc_version in
| 2.[0-9] | 2.1[01]) mcheck=disabled ;;
| *) mcheck=enabled ;;
| esac
| if test $mcheck = enabled; then
| MALLOC_CHECK_=2; export MALLOC_CHECK_
| else
| echo >&2 "glibc $glibc_version detected, disabling memory checking"
| fi
| ;;
| FreeBSD)
| case `uname -r` in
| [789].*)
| MALLOC_CONF=AJ
| ;;
| *)
| MALLOC_CONF=abort:true,junk:true,redzone:true
| ;;
| esac
| export MALLOC_CONF
| esac
|
| # The name of loopback interface
| case `uname` in
| Linux)
| LOOPBACK_INTERFACE=lo
| ;;
| FreeBSD|NetBSD)
| LOOPBACK_INTERFACE=lo0
| ;;
| esac
|
| # Check for platform.
| case `uname` in
| MINGW*)
| IS_WIN32="yes"
| IS_BSD="no"
| ;;
| FreeBSD|NetBSD)
| IS_WIN32="no"
| IS_BSD="yes"
| ;;
| *)
| IS_WIN32="no"
| IS_BSD="no"
| ;;
| esac
|
| # Check whether to run IPv6 tests.
| if perl -e 'use Socket; socket(FH, PF_INET6, SOCK_STREAM, 0) || exit 1;'; then
| HAVE_IPV6=yes
| else
| HAVE_IPV6=no
| fi
|
| find_l7_lib()
| {
| set +x
| var=HAVE_`echo "$1" | tr '[a-z]' '[A-Z]'`
| if test "$HAVE_PYTHON" = "yes"; then
| result=$($PYTHON $abs_top_srcdir/tests/test-l7.py --help | grep "$1")
| if test "x${result}" != x; then
| eval ${var}="yes"
| else
| eval ${var}="no"
| fi
| else
| eval ${var}="no"
| fi
| }
|
| find_l7_lib ftp
| find_l7_lib tftp
|
| # Look for a commnand in the system. If it is found, defines
| # HAVE_COMMAND="yes", otherwise HAVE_COMMAND="no".
| find_command()
| {
| which $1 > /dev/null 2>&1
| status=$?
| var=HAVE_`echo "$1" | tr '[a-z]' '[A-Z]'`
| if test "$status" = "0"; then
| eval ${var}="yes"
| else
| eval ${var}="no"
| fi
| }
|
| # Set HAVE_NC
| find_command nc
|
| # Determine correct netcat option to quit on stdin EOF
| if nc --version 2>&1 | grep -q nmap.org; then
| NC_EOF_OPT="--send-only"
| else
| NC_EOF_OPT="-q 1"
| fi
|
| CURL_OPT="-g -v --max-time 1 --retry 2 --retry-delay 1 --connect-timeout 1"
|
| # Turn off proxies.
| unset http_proxy
| unset https_proxy
| unset ftp_proxy
| unset no_proxy
| unset HTTP_PROXY
| unset HTTPS_PROXY
| unset FTP_PROXY
| unset NO_PROXY
## ---------------- ##
## Tested programs. ##
## ---------------- ##
./testsuite.at:1: /home/drizzt/ovs/vswitchd/ovs-vswitchd --version
ovs-vswitchd (Open vSwitch) 2.7.90
./testsuite.at:1: /home/drizzt/ovs/utilities/ovs-vsctl --version
ovs-vsctl (Open vSwitch) 2.7.90
DB Schema 7.15.0
./testsuite.at:1: /usr/bin/perl --version
This is perl 5, version 24, subversion 1 (v5.24.1) built for armv7l-linux-thread-multi
Copyright 1987-2017, Larry Wall
Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.
Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl". If you have access to the
Internet, point your browser at http://www.perl.org/, the Perl Home Page.
## ------------------ ##
## Running the tests. ##
## ------------------ ##
testsuite: starting at: Mon May 22 16:51:22 CEST 2017
testsuite: ending at: Mon May 22 16:51:26 CEST 2017
testsuite: test suite duration: 0h 0m 4s
## ------------- ##
## Test results. ##
## ------------- ##
ERROR: 1 test was run,
1 failed unexpectedly.
## ------------------------ ##
## Summary of the failures. ##
## ------------------------ ##
Failed tests:
openvswitch 2.7.90 test suite test groups:
NUM: FILE-NAME:LINE TEST-GROUP-NAME
KEYWORDS
1030: ofproto-dpif.at:465 ofproto-dpif - select group with dp_hash selection method
## ---------------------- ##
## Detailed failed tests. ##
## ---------------------- ##
# -*- compilation -*-
1030. ofproto-dpif.at:465: testing ofproto-dpif - select group with dp_hash selection method ...
./ofproto-dpif.at:466: ovsdb-tool create conf.db $abs_top_srcdir/vswitchd/vswitch.ovsschema
./ofproto-dpif.at:466: ovsdb-server --detach --no-chdir --pidfile --log-file --remote=punix:$OVS_RUNDIR/db.sock
stderr:
2017-05-22T14:51:24Z|00001|vlog|INFO|opened log file /home/drizzt/ovs/tests/testsuite.dir/1030/ovsdb-server.log
./ofproto-dpif.at:466: sed < stderr '
/vlog|INFO|opened log file/d
/ovsdb_server|INFO|ovsdb-server (Open vSwitch)/d'
./ofproto-dpif.at:466: ovs-vsctl --no-wait init
./ofproto-dpif.at:466: ovs-vswitchd --enable-dummy --disable-system --detach --no-chdir --pidfile --log-file -vvconn -vofproto_dpif -vunixctl
stderr:
2017-05-22T14:51:24Z|00001|vlog|INFO|opened log file /home/drizzt/ovs/tests/testsuite.dir/1030/ovs-vswitchd.log
2017-05-22T14:51:24Z|00002|ovs_numa|INFO|Discovered 2 CPU cores on NUMA node 0
2017-05-22T14:51:24Z|00003|ovs_numa|INFO|Discovered 1 NUMA nodes and 2 CPU cores
2017-05-22T14:51:24Z|00004|reconnect|INFO|unix:/home/drizzt/ovs/tests/testsuite.dir/1030/db.sock: connecting...
2017-05-22T14:51:24Z|00005|reconnect|INFO|unix:/home/drizzt/ovs/tests/testsuite.dir/1030/db.sock: connected
./ofproto-dpif.at:466: sed < stderr '
/ovs_numa|INFO|Discovered /d
/vlog|INFO|opened log file/d
/vswitchd|INFO|ovs-vswitchd (Open vSwitch)/d
/reconnect|INFO|/d
/ofproto|INFO|using datapath ID/d
/netdev_linux|INFO|.*device has unknown hardware address family/d
/ofproto|INFO|datapath ID changed to fedcba9876543210/d
/dpdk|INFO|DPDK Disabled - Use other_config:dpdk-init to enable/d'
./ofproto-dpif.at:466: add_of_br 0
ovs-vsctl -- add-port br0 p1 -- set Interface p1 type=dummy ofport_request=1 -- add-port br0 p10 -- set Interface p10 type=dummy ofport_request=10 -- add-port br0 p11 -- set Interface p11 type=dummy ofport_request=11
./ofproto-dpif.at:468: ovs-ofctl -O OpenFlow15 add-group br0 'group_id=1234,type=select,selection_method=dp_hash,bucket=output:10,bucket=output:11'
./ofproto-dpif.at:469: ovs-ofctl -O OpenFlow15 add-flow br0 'ip,nw_src=192.168.0.1 actions=group:1234'
./ofproto-dpif.at:475: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:475: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:475: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:475: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:475: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:475: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:475: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:475: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:475: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:475: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:475: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:475: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:475: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:475: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:475: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:475: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:478: ovs-appctl dpctl/dump-flows | sed 's/dp_hash(.*\/0x1)/dp_hash(0xXXXX\/0x1)/' | sed 's/packets.*actions:1/actions:1/' | strip_ufid | strip_used | sort
./ofproto-dpif.at:485: ovs-appctl revalidator/purge
./ofproto-dpif.at:491: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:491: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:491: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:491: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:491: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:491: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:491: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:491: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:491: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:491: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:491: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:491: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:491: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:491: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:491: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:491: ovs-appctl netdev-dummy/receive p1 $pkt
./ofproto-dpif.at:494: ovs-appctl dpctl/dump-flows | sed 's/dp_hash(.*\/0x1)/dp_hash(0xXXXX\/0x1)/' | strip_ufid | strip_used | sort
--- - 2017-05-22 16:51:26.593885062 +0200
+++ /home/drizzt/ovs/tests/testsuite.dir/at-groups/1030/stdout 2017-05-22 16:51:26.572923324 +0200
@@ -1,4 +1,4 @@
flow-dump from non-dpdk interfaces:
-recirc_id(0),in_port(1),eth_type(0x0800),ipv4(src=192.168.0.1,frag=no), packets:15, bytes:630, used:0.0s, actions:hash(hash_l4(0)),recirc(0x2)
-recirc_id(0x2),dp_hash(0xXXXX/0x1),in_port(1),eth_type(0x0800),ipv4(frag=no), packets:15, bytes:630, used:0.0s, actions:11
+recirc_id(0),in_port(1),eth_type(0x0800),ipv4(src=192.168.0.1,frag=no), packets:15, bytes:630, used:0.0s, actions:hash(hash_l4(0)),recirc(0x3)
+recirc_id(0x3),dp_hash(0xXXXX/0x1),in_port(1),eth_type(0x0800),ipv4(frag=no), packets:15, bytes:630, used:0.0s, actions:11
ovsdb-server.log:
> 2017-05-22T14:51:24.384Z|00001|vlog|INFO|opened log file /home/drizzt/ovs/tests/testsuite.dir/1030/ovsdb-server.log
> 2017-05-22T14:51:24.422Z|00002|ovsdb_server|INFO|ovsdb-server (Open vSwitch) 2.7.90
ovs-vswitchd.log:
> 2017-05-22T14:51:24.647Z|00001|vlog|INFO|opened log file /home/drizzt/ovs/tests/testsuite.dir/1030/ovs-vswitchd.log
> 2017-05-22T14:51:24.660Z|00002|ovs_numa|INFO|Discovered 2 CPU cores on NUMA node 0
> 2017-05-22T14:51:24.660Z|00003|ovs_numa|INFO|Discovered 1 NUMA nodes and 2 CPU cores
> 2017-05-22T14:51:24.661Z|00004|reconnect|INFO|unix:/home/drizzt/ovs/tests/testsuite.dir/1030/db.sock: connecting...
> 2017-05-22T14:51:24.663Z|00005|reconnect|INFO|unix:/home/drizzt/ovs/tests/testsuite.dir/1030/db.sock: connected
> 2017-05-22T14:51:24.712Z|00006|bridge|INFO|ovs-vswitchd (Open vSwitch) 2.7.90
> 2017-05-22T14:51:24.888Z|00007|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports recirculation
> 2017-05-22T14:51:24.889Z|00008|ofproto_dpif|INFO|dummy@ovs-dummy: VLAN header stack length probed as 1
> 2017-05-22T14:51:24.890Z|00009|ofproto_dpif|INFO|dummy@ovs-dummy: MPLS label stack length probed as 3
> 2017-05-22T14:51:24.890Z|00010|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports truncate action
> 2017-05-22T14:51:24.891Z|00011|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports unique flow ids
> 2017-05-22T14:51:24.891Z|00012|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports clone action
> 2017-05-22T14:51:24.892Z|00013|ofproto_dpif|INFO|dummy@ovs-dummy: Max sample nesting level probed as 10
> 2017-05-22T14:51:24.893Z|00014|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports eventmask in conntrack action
> 2017-05-22T14:51:24.893Z|00015|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_state
> 2017-05-22T14:51:24.894Z|00016|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_zone
> 2017-05-22T14:51:24.894Z|00017|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_mark
> 2017-05-22T14:51:24.895Z|00018|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_label
> 2017-05-22T14:51:24.895Z|00019|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath does not support ct_state_nat
> 2017-05-22T14:51:24.896Z|00020|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_orig_tuple
> 2017-05-22T14:51:24.899Z|00021|bridge|INFO|bridge br0: added interface br0 on port 65534
> 2017-05-22T14:51:24.900Z|00022|bridge|INFO|bridge br0: using datapath ID fedcba9876543210
> 2017-05-22T14:51:24.904Z|00023|connmgr|INFO|br0: added service controller "punix:/home/drizzt/ovs/tests/testsuite.dir/1030/br0.mgmt"
> 2017-05-22T14:51:25.021Z|00024|bridge|INFO|bridge br0: added interface p10 on port 10
> 2017-05-22T14:51:25.025Z|00025|bridge|INFO|bridge br0: added interface p11 on port 11
> 2017-05-22T14:51:25.027Z|00026|bridge|INFO|bridge br0: added interface p1 on port 1
> 2017-05-22T14:51:25.123Z|00027|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x1):
> version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
> 2017-05-22T14:51:25.123Z|00028|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
> version bitmap: 0x06
> 2017-05-22T14:51:25.124Z|00029|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
> 2017-05-22T14:51:25.126Z|00030|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
> ADD group_id=1234,type=select,selection_method=dp_hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
> 2017-05-22T14:51:25.128Z|00031|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
> 2017-05-22T14:51:25.128Z|00032|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
> 2017-05-22T14:51:25.166Z|00033|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x2):
> version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
> 2017-05-22T14:51:25.166Z|00034|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
> version bitmap: 0x06
> 2017-05-22T14:51:25.166Z|00035|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
> 2017-05-22T14:51:25.167Z|00036|vconn|DBG|unix: received: OFPT_FLOW_MOD (OF1.5) (xid=0x2): ADD ip,nw_src=192.168.0.1 actions=group:1234
> 2017-05-22T14:51:25.168Z|00037|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
> 2017-05-22T14:51:25.168Z|00038|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
> 2017-05-22T14:51:25.174Z|00039|connmgr|INFO|br0<->unix: 1 flow_mods in the last 0 s (1 adds)
> 2017-05-22T14:51:25.233Z|00040|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:01),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.1.0,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.234Z|00041|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.269Z|00042|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:01),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.1.1,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.269Z|00043|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.308Z|00044|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:01),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.1.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.309Z|00045|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.347Z|00046|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:01),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.1.3,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.348Z|00047|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.391Z|00048|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:01),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.1.4,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.392Z|00049|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.443Z|00050|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:01),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.1.5,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.444Z|00051|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.475Z|00052|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:01),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.1.6,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.476Z|00053|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.509Z|00054|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:01),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.1.7,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.509Z|00055|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.542Z|00056|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:01),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.1.8,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.545Z|00057|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.575Z|00058|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:01),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.1.9,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.577Z|00059|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.610Z|00060|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:01),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.1.10,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.610Z|00061|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.641Z|00062|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:01),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.1.11,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.642Z|00063|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.672Z|00064|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:01),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.1.12,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.672Z|00065|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.704Z|00066|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:01),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.1.13,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.704Z|00067|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.735Z|00068|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:01),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.1.14,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.737Z|00069|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.764Z|00070|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:07,dst=50:54:00:00:00:01),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.1.15,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.764Z|00071|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.859Z|00072|unixctl|DBG|received request dpctl/dump-flows[], id=0
> 2017-05-22T14:51:25.860Z|00073|unixctl|DBG|replying with success, id=0: "flow-dump from non-dpdk interfaces:
> recirc_id(0x1),dp_hash(0x939ebebe/0x1),in_port(1),eth_type(0x0800),ipv4(frag=no), packets:5, bytes:210, used:0.095s, actions:11
> recirc_id(0),in_port(1),eth_type(0x0800),ipv4(src=192.168.0.1,frag=no), packets:15, bytes:630, used:0.095s, actions:hash(hash_l4(0)),recirc(0x1)
> recirc_id(0x1),dp_hash(0x9d330e9/0x1),in_port(1),eth_type(0x0800),ipv4(frag=no), packets:9, bytes:378, used:0.122s, actions:10
> "
> 2017-05-22T14:51:25.940Z|00074|unixctl|DBG|received request revalidator/purge[], id=0
> 2017-05-22T14:51:25.941Z|00075|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:25.972Z|00076|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:0,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:25.972Z|00077|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:26.003Z|00078|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:1,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:26.004Z|00079|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:26.038Z|00080|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:2,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:26.038Z|00081|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:26.067Z|00082|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:3,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:26.068Z|00083|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:26.099Z|00084|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:4,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:26.099Z|00085|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:26.133Z|00086|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:5,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:26.133Z|00087|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:26.163Z|00088|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:6,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:26.164Z|00089|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:26.198Z|00090|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:7,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:26.198Z|00091|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:26.228Z|00092|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:8,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:26.228Z|00093|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:26.264Z|00094|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:9,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:26.264Z|00095|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:26.299Z|00096|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:a,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:26.300Z|00097|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:26.340Z|00098|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:b,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:26.341Z|00099|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:26.387Z|00100|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:c,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:26.388Z|00101|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:26.422Z|00102|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:d,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:26.423Z|00103|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:26.454Z|00104|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:e,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:26.454Z|00105|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:26.485Z|00106|unixctl|DBG|received request netdev-dummy/receive["p1","in_port(1),eth(src=50:54:00:00:00:f,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=1,tos=0,ttl=128,frag=no),icmp(type=8,code=0)"], id=0
> 2017-05-22T14:51:26.486Z|00107|unixctl|DBG|replying with success, id=0: ""
> 2017-05-22T14:51:26.547Z|00108|unixctl|DBG|received request dpctl/dump-flows[], id=0
> 2017-05-22T14:51:26.548Z|00109|unixctl|DBG|replying with success, id=0: "flow-dump from non-dpdk interfaces:
> recirc_id(0x3),dp_hash(0xfaee62da/0x1),in_port(1),eth_type(0x0800),ipv4(frag=no), packets:15, bytes:630, used:0.061s, actions:11
> recirc_id(0),in_port(1),eth_type(0x0800),ipv4(src=192.168.0.1,frag=no), packets:15, bytes:630, used:0.061s, actions:hash(hash_l4(0)),recirc(0x3)
> "
1030. ofproto-dpif.at:465: 1030. ofproto-dpif - select group with dp_hash selection method (ofproto-dpif.at:465): FAILED (ofproto-dpif.at:494)
## ------------- ##
## ../config.log ##
## ------------- ##
| 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.7.90, which was
| generated by GNU Autoconf 2.69. Invocation command line was
|
| $ ./configure --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info
|
| ## --------- ##
| ## Platform. ##
| ## --------- ##
|
| hostname = bananapi
| uname -m = armv7l
| uname -r = 4.9.18-gnu-r201703261106-1-grsec
| uname -s = Linux
| uname -v = #1 SMP Sat Apr 1 14:05:49 UTC 2017
|
| /usr/bin/uname -p = unknown
| /bin/uname -X = unknown
|
| /bin/arch = unknown
| /usr/bin/arch -k = unknown
| /usr/convex/getsysinfo = unknown
| /usr/bin/hostinfo = unknown
| /bin/machine = unknown
| /usr/bin/oslevel = unknown
| /bin/universe = unknown
|
| PATH: /usr/local/sbin
| PATH: /usr/local/bin
| PATH: /usr/bin
| PATH: /usr/lib/jvm/default/bin
| PATH: /usr/bin/site_perl
| PATH: /usr/bin/vendor_perl
| PATH: /usr/bin/core_perl
| PATH: /home/drizzt/bin
|
|
| ## ----------- ##
| ## Core tests. ##
| ## ----------- ##
|
| configure:2691: checking for a BSD-compatible install
| configure:2759: result: /usr/bin/install -c
| configure:2770: checking whether build environment is sane
| configure:2825: result: yes
| configure:2976: checking for a thread-safe mkdir -p
| configure:3015: result: /usr/bin/mkdir -p
| configure:3022: checking for gawk
| configure:3038: found /usr/bin/gawk
| configure:3049: result: gawk
| configure:3060: checking whether make sets $(MAKE)
| configure:3082: result: yes
| configure:3111: checking whether make supports nested variables
| configure:3128: result: yes
| configure:3207: checking how to create a pax tar archive
| configure:3218: tar --version
| tar (GNU tar) 1.29
| Copyright (C) 2015 Free Software Foundation, Inc.
| License GPLv3+: GNU GPL version 3 or later .
| 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:3221: $? = 0
| configure:3261: tardir=conftest.dir && eval tar --format=posix -chf - "$tardir" >conftest.tar
| configure:3264: $? = 0
| configure:3268: tar -xf - &5
| gcc (GCC) 6.3.1 20170306
| Copyright (C) 2016 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:3727: $? = 0
| configure:3716: gcc -v >&5
| Using built-in specs.
| COLLECT_GCC=gcc
| COLLECT_LTO_WRAPPER=/usr/lib/gcc/armv7l-unknown-linux-gnueabihf/6.3.1/lto-wrapper
| Target: armv7l-unknown-linux-gnueabihf
| Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://github.com/archlinuxarm/PKGBUILDs/issues --enable-languages=c,c++,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --disable-multilib --disable-werror --enable-checking=release --host=armv7l-unknown-linux-gnueabihf --build=armv7l-unknown-linux-gnueabihf --with-arch=armv7-a --with-float=hard --with-fpu=vfpv3-d16
| Thread model: posix
| gcc version 6.3.1 20170306 (GCC)
| configure:3727: $? = 0
| configure:3716: gcc -V >&5
| gcc: error: unrecognized command line option '-V'
| gcc: fatal error: no input files
| compilation terminated.
| configure:3727: $? = 1
| configure:3716: gcc -qversion >&5
| gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
| gcc: fatal error: no input files
| compilation terminated.
| configure:3727: $? = 1
| configure:3747: checking whether the C compiler works
| configure:3769: gcc conftest.c >&5
| configure:3773: $? = 0
| configure:3821: result: yes
| configure:3824: checking for C compiler default output file name
| configure:3826: result: a.out
| configure:3832: checking for suffix of executables
| configure:3839: gcc -o conftest conftest.c >&5
| configure:3843: $? = 0
| configure:3865: result:
| configure:3887: checking whether we are cross compiling
| configure:3895: gcc -o conftest conftest.c >&5
| configure:3899: $? = 0
| configure:3906: ./conftest
| configure:3910: $? = 0
| configure:3925: result: no
| configure:3930: checking for suffix of object files
| configure:3952: gcc -c conftest.c >&5
| configure:3956: $? = 0
| configure:3977: result: o
| configure:3981: checking whether we are using the GNU C compiler
| configure:4000: gcc -c conftest.c >&5
| configure:4000: $? = 0
| configure:4009: result: yes
| configure:4018: checking whether gcc accepts -g
| configure:4038: gcc -c -g conftest.c >&5
| configure:4038: $? = 0
| configure:4079: result: yes
| configure:4096: checking for gcc option to accept ISO C89
| configure:4159: gcc -c -g -O2 conftest.c >&5
| configure:4159: $? = 0
| configure:4172: result: none needed
| configure:4197: checking whether gcc understands -c and -o together
| configure:4219: gcc -c conftest.c -o conftest2.o
| configure:4222: $? = 0
| configure:4219: gcc -c conftest.c -o conftest2.o
| configure:4222: $? = 0
| configure:4234: result: yes
| configure:4253: checking dependency style of gcc
| configure:4364: result: none
| configure:4379: checking for gcc option to accept ISO C99
| configure:4528: gcc -c -g -O2 conftest.c >&5
| configure:4528: $? = 0
| configure:4541: result: none needed
| configure:4562: checking how to run the C preprocessor
| configure:4593: gcc -E conftest.c
| configure:4593: $? = 0
| configure:4607: gcc -E conftest.c
| conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
| #include
| ^
| compilation terminated.
| configure:4607: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.90"
| | /* end confdefs.h. */
| | #include
| configure:4632: result: gcc -E
| configure:4652: gcc -E conftest.c
| configure:4652: $? = 0
| configure:4666: gcc -E conftest.c
| conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
| #include
| ^
| compilation terminated.
| configure:4666: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.90"
| | /* end confdefs.h. */
| | #include
| configure:4695: checking for grep that handles long lines and -e
| configure:4753: result: /usr/bin/grep
| configure:4758: checking for fgrep
| configure:4820: result: /usr/bin/grep -F
| configure:4825: checking for egrep
| configure:4887: result: /usr/bin/grep -E
| configure:4896: checking for perl
| configure:4914: found /usr/bin/perl
| configure:4927: result: /usr/bin/perl
| configure:4945: checking for ANSI C header files
| configure:4965: gcc -c -g -O2 conftest.c >&5
| configure:4965: $? = 0
| configure:5038: gcc -o conftest -g -O2 conftest.c >&5
| configure:5038: $? = 0
| configure:5038: ./conftest
| configure:5038: $? = 0
| configure:5049: result: yes
| configure:5062: checking for sys/types.h
| configure:5062: gcc -c -g -O2 conftest.c >&5
| configure:5062: $? = 0
| configure:5062: result: yes
| configure:5062: checking for sys/stat.h
| configure:5062: gcc -c -g -O2 conftest.c >&5
| configure:5062: $? = 0
| configure:5062: result: yes
| configure:5062: checking for stdlib.h
| configure:5062: gcc -c -g -O2 conftest.c >&5
| configure:5062: $? = 0
| configure:5062: result: yes
| configure:5062: checking for string.h
| configure:5062: gcc -c -g -O2 conftest.c >&5
| configure:5062: $? = 0
| configure:5062: result: yes
| configure:5062: checking for memory.h
| configure:5062: gcc -c -g -O2 conftest.c >&5
| configure:5062: $? = 0
| configure:5062: result: yes
| configure:5062: checking for strings.h
| configure:5062: gcc -c -g -O2 conftest.c >&5
| configure:5062: $? = 0
| configure:5062: result: yes
| configure:5062: checking for inttypes.h
| configure:5062: gcc -c -g -O2 conftest.c >&5
| configure:5062: $? = 0
| configure:5062: result: yes
| configure:5062: checking for stdint.h
| configure:5062: gcc -c -g -O2 conftest.c >&5
| configure:5062: $? = 0
| configure:5062: result: yes
| configure:5062: checking for unistd.h
| configure:5062: gcc -c -g -O2 conftest.c >&5
| configure:5062: $? = 0
| configure:5062: result: yes
| configure:5075: checking minix/config.h usability
| configure:5075: gcc -c -g -O2 conftest.c >&5
| conftest.c:54:26: fatal error: minix/config.h: No such file or directory
| #include
| ^
| compilation terminated.
| configure:5075: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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
| | #ifdef HAVE_SYS_TYPES_H
| | # include
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include
| | #endif
| | #ifdef STDC_HEADERS
| | # include
| | # include
| | #else
| | # ifdef HAVE_STDLIB_H
| | # include
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | # include
| | # endif
| | # include
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include
| | #endif
| | #include
| configure:5075: result: no
| configure:5075: checking minix/config.h presence
| configure:5075: gcc -E conftest.c
| conftest.c:21:26: fatal error: minix/config.h: No such file or directory
| #include
| ^
| compilation terminated.
| configure:5075: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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
| configure:5075: result: no
| configure:5075: checking for minix/config.h
| configure:5075: result: no
| configure:5096: checking whether it is safe to define __EXTENSIONS__
| configure:5114: gcc -c -g -O2 conftest.c >&5
| configure:5114: $? = 0
| configure:5121: result: yes
| configure:5135: checking whether byte ordering is bigendian
| configure:5150: gcc -c -g -O2 conftest.c >&5
| conftest.c:27:9: error: unknown type name 'not'
| not a universal capable compiler
| ^~~
| conftest.c:27:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
| not a universal capable compiler
| ^~~~~~~~~
| conftest.c:27:15: error: unknown type name 'universal'
| configure:5150: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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:5195: gcc -c -g -O2 conftest.c >&5
| configure:5195: $? = 0
| configure:5213: gcc -c -g -O2 conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:33:4: error: unknown type name 'not'
| not big endian
| ^~~
| conftest.c:33:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian'
| not big endian
| ^~~~~~
| configure:5213: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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
| | #include
| |
| | int
| | main ()
| | {
| | #if BYTE_ORDER != BIG_ENDIAN
| | not big endian
| | #endif
| |
| | ;
| | return 0;
| | }
| configure:5341: result: no
| configure:5366: checking for special C compiler options needed for large files
| configure:5411: result: no
| configure:5417: checking for _FILE_OFFSET_BITS value needed for large files
| configure:5442: gcc -c -g -O2 conftest.c >&5
| conftest.c:31:33: warning: left shift count >= width of type [-Wshift-count-overflow]
| #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
| ^
| conftest.c:32:23: note: in expansion of macro 'LARGE_OFF_T'
| int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
| ^~~~~~~~~~~
| conftest.c:31:57: warning: left shift count >= width of type [-Wshift-count-overflow]
| #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
| ^
| conftest.c:32:23: note: in expansion of macro 'LARGE_OFF_T'
| int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
| ^~~~~~~~~~~
| conftest.c:31:33: warning: left shift count >= width of type [-Wshift-count-overflow]
| #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
| ^
| conftest.c:33:13: note: in expansion of macro 'LARGE_OFF_T'
| && LARGE_OFF_T % 2147483647 == 1)
| ^~~~~~~~~~~
| conftest.c:31:57: warning: left shift count >= width of type [-Wshift-count-overflow]
| #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
| ^
| conftest.c:33:13: note: in expansion of macro 'LARGE_OFF_T'
| && LARGE_OFF_T % 2147483647 == 1)
| ^~~~~~~~~~~
| conftest.c:32:7: error: variably modified 'off_t_is_large' at file scope
| int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
| ^~~~~~~~~~~~~~
| configure:5442: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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
| | /* Check that off_t can represent 2**63 - 1 correctly.
| | We can't simply define LARGE_OFF_T to be 9223372036854775807,
| | since some C++ compilers masquerading as C compilers
| | incorrectly reject 9223372036854775807. */
| | #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
| | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
| | && LARGE_OFF_T % 2147483647 == 1)
| | ? 1 : -1];
| | int
| | main ()
| | {
| |
| | ;
| | return 0;
| | }
| configure:5466: gcc -c -g -O2 conftest.c >&5
| configure:5466: $? = 0
| configure:5474: result: 64
| configure:5589: checking build system type
| configure:5603: result: armv7l-unknown-linux-gnueabihf
| configure:5623: checking host system type
| configure:5636: result: armv7l-unknown-linux-gnueabihf
| configure:5677: checking how to print strings
| configure:5704: result: printf
| configure:5725: checking for a sed that does not truncate output
| configure:5789: result: /usr/bin/sed
| configure:5837: checking for ld used by gcc
| configure:5904: result: /usr/bin/ld
| configure:5911: checking if the linker (/usr/bin/ld) is GNU ld
| configure:5926: result: yes
| configure:5938: checking for BSD- or MS-compatible name lister (nm)
| configure:5992: result: /usr/bin/nm -B
| configure:6122: checking the name lister (/usr/bin/nm -B) interface
| configure:6129: gcc -c -g -O2 conftest.c >&5
| configure:6132: /usr/bin/nm -B "conftest.o"
| configure:6135: output
| 00000000 B some_variable
| configure:6142: result: BSD nm
| configure:6145: checking whether ln -s works
| configure:6149: result: yes
| configure:6157: checking the maximum length of command line arguments
| configure:6288: result: 1572864
| configure:6336: checking how to convert armv7l-unknown-linux-gnueabihf file names to armv7l-unknown-linux-gnueabihf format
| configure:6376: result: func_convert_file_noop
| configure:6383: checking how to convert armv7l-unknown-linux-gnueabihf file names to toolchain format
| configure:6403: result: func_convert_file_noop
| configure:6410: checking for /usr/bin/ld option to reload object files
| configure:6417: result: -r
| configure:6491: checking for objdump
| configure:6507: found /usr/bin/objdump
| configure:6518: result: objdump
| configure:6550: checking how to recognize dependent libraries
| configure:6750: result: pass_all
| configure:6835: checking for dlltool
| configure:6865: result: no
| configure:6895: checking how to associate runtime and link libraries
| configure:6922: result: printf %s\n
| configure:6982: checking for ar
| configure:6998: found /usr/bin/ar
| configure:7009: result: ar
| configure:7046: checking for archiver @FILE support
| configure:7063: gcc -c -g -O2 conftest.c >&5
| configure:7063: $? = 0
| configure:7066: ar cru libconftest.a @conftest.lst >&5
| ar: `u' modifier ignored since `D' is the default (see `U')
| configure:7069: $? = 0
| configure:7074: 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:7077: $? = 1
| configure:7089: result: @
| configure:7147: checking for strip
| configure:7163: found /usr/bin/strip
| configure:7174: result: strip
| configure:7246: checking for ranlib
| configure:7262: found /usr/bin/ranlib
| configure:7273: result: ranlib
| configure:7375: checking command to parse /usr/bin/nm -B output from gcc object
| configure:7528: gcc -c -g -O2 conftest.c >&5
| configure:7531: $? = 0
| configure:7535: /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:7538: $? = 0
| configure:7604: gcc -o conftest -g -O2 conftest.c conftstm.o >&5
| configure:7607: $? = 0
| configure:7645: result: ok
| configure:7692: checking for sysroot
| configure:7722: result: no
| configure:7729: checking for a working dd
| configure:7767: result: /usr/bin/dd
| configure:7771: checking how to truncate binary pipes
| configure:7786: result: /usr/bin/dd bs=4096 count=1
| configure:8115: checking for mt
| configure:8145: result: no
| configure:8165: checking if : is a manifest tool
| configure:8171: : '-?'
| configure:8179: result: no
| configure:8853: checking for dlfcn.h
| configure:8853: gcc -c -g -O2 conftest.c >&5
| configure:8853: $? = 0
| configure:8853: result: yes
| configure:9108: checking for objdir
| configure:9123: result: .libs
| configure:9387: checking if gcc supports -fno-rtti -fno-exceptions
| configure:9405: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5
| cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C
| configure:9409: $? = 0
| configure:9422: result: no
| configure:9780: checking for gcc option to produce PIC
| configure:9787: result: -fPIC -DPIC
| configure:9795: checking if gcc PIC flag -fPIC -DPIC works
| configure:9813: gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5
| configure:9817: $? = 0
| configure:9830: result: yes
| configure:9859: checking if gcc static flag -static works
| configure:9887: result: yes
| configure:9902: checking if gcc supports -c -o file.o
| configure:9923: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
| configure:9927: $? = 0
| configure:9949: result: yes
| configure:9957: checking if gcc supports -c -o file.o
| configure:10004: result: yes
| configure:10037: checking whether the gcc linker (/usr/bin/ld) supports shared libraries
| configure:11296: result: yes
| configure:11536: checking dynamic linker characteristics
| configure:12117: gcc -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5
| configure:12117: $? = 0
| configure:12354: result: GNU/Linux ld.so
| configure:12476: checking how to hardcode library paths into programs
| configure:12501: result: immediate
| configure:13049: checking whether stripping libraries is possible
| configure:13054: result: yes
| configure:13089: checking if libtool supports shared libraries
| configure:13091: result: yes
| configure:13094: checking whether to build shared libraries
| configure:13119: result: no
| configure:13122: checking whether to build static libraries
| configure:13126: result: yes
| configure:13199: checking for library containing pow
| configure:13230: gcc -o conftest -g -O2 conftest.c >&5
| conftest.c:36:6: warning: conflicting types for built-in function 'pow'
| char pow ();
| ^~~
| /tmp/ccOt0esD.o: In function `main':
| /home/drizzt/ovs/conftest.c:40: undefined reference to `pow'
| collect2: error: ld returned 1 exit status
| configure:13230: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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:13230: gcc -o conftest -g -O2 conftest.c -lm >&5
| conftest.c:36:6: warning: conflicting types for built-in function 'pow'
| char pow ();
| ^~~
| configure:13230: $? = 0
| configure:13247: result: -lm
| configure:13255: checking for library containing clock_gettime
| configure:13286: gcc -o conftest -g -O2 conftest.c -lm >&5
| configure:13286: $? = 0
| configure:13303: result: none required
| configure:13311: checking for library containing timer_create
| configure:13342: gcc -o conftest -g -O2 conftest.c -lm >&5
| /tmp/ccHCvUIa.o: In function `main':
| /home/drizzt/ovs/conftest.c:40: undefined reference to `timer_create'
| collect2: error: ld returned 1 exit status
| configure:13342: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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:13342: gcc -o conftest -g -O2 conftest.c -lrt -lm >&5
| configure:13342: $? = 0
| configure:13359: result: -lrt
| configure:13367: checking for library containing pthread_create
| configure:13398: gcc -o conftest -g -O2 conftest.c -lrt -lm >&5
| /usr/bin/ld: /tmp/ccEmnktD.o: undefined reference to symbol 'pthread_create@@GLIBC_2.4'
| /usr/lib/libpthread.so.0: error adding symbols: DSO missing from command line
| collect2: error: ld returned 1 exit status
| configure:13398: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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_create ();
| | int
| | main ()
| | {
| | return pthread_create ();
| | ;
| | return 0;
| | }
| configure:13398: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5
| configure:13398: $? = 0
| configure:13415: result: -lpthread
| configure:13423: checking whether strerror_r is declared
| configure:13423: gcc -c -g -O2 conftest.c >&5
| configure:13423: $? = 0
| configure:13423: result: yes
| configure:13436: checking for strerror_r
| configure:13436: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5
| configure:13436: $? = 0
| configure:13436: result: yes
| configure:13445: checking whether strerror_r returns char *
| configure:13469: gcc -c -g -O2 conftest.c >&5
| configure:13469: $? = 0
| configure:13507: result: yes
| configure:13516: checking vmware.h usability
| configure:13516: gcc -c -g -O2 conftest.c >&5
| conftest.c:65:20: fatal error: vmware.h: No such file or directory
| #include
| ^
| compilation terminated.
| configure:13516: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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
| | #ifdef HAVE_SYS_TYPES_H
| | # include
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include
| | #endif
| | #ifdef STDC_HEADERS
| | # include
| | # include
| | #else
| | # ifdef HAVE_STDLIB_H
| | # include
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | # include
| | # endif
| | # include
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include
| | #endif
| | #include
| configure:13516: result: no
| configure:13516: checking vmware.h presence
| configure:13516: gcc -E conftest.c
| conftest.c:32:20: fatal error: vmware.h: No such file or directory
| #include
| ^
| compilation terminated.
| configure:13516: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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
| configure:13516: result: no
| configure:13516: checking for vmware.h
| configure:13516: result: no
| configure:13537: checking for MSVC x64 compiler
| configure:13550: result: no
| configure:13554: checking windows.h usability
| configure:13554: gcc -c -g -O2 conftest.c >&5
| conftest.c:65:21: fatal error: windows.h: No such file or directory
| #include
| ^
| compilation terminated.
| configure:13554: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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
| | #ifdef HAVE_SYS_TYPES_H
| | # include
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include
| | #endif
| | #ifdef STDC_HEADERS
| | # include
| | # include
| | #else
| | # ifdef HAVE_STDLIB_H
| | # include
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | # include
| | # endif
| | # include
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include
| | #endif
| | #include
| configure:13554: result: no
| configure:13554: checking windows.h presence
| configure:13554: gcc -E conftest.c
| conftest.c:32:21: fatal error: windows.h: No such file or directory
| #include
| ^
| compilation terminated.
| configure:13554: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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
| configure:13554: result: no
| configure:13554: checking for windows.h
| configure:13554: result: no
| configure:13714: checking for linux/netlink.h
| configure:13714: gcc -c -g -O2 conftest.c >&5
| configure:13714: $? = 0
| configure:13714: result: yes
| configure:13770: checking for pkg-config
| configure:13788: found /usr/bin/pkg-config
| configure:13800: result: /usr/bin/pkg-config
| configure:13860: checking whether compiling and linking against OpenSSL works
| Trying link with SSL_LDFLAGS=; SSL_LIBS=-lssl -lcrypto; SSL_INCLUDES=
| configure:13882: gcc -o conftest -g -O2 conftest.c -lssl -lcrypto -lpthread -lrt -lm >&5
| configure:13882: $? = 0
| configure:13884: result: yes
| configure:13951: checking for capng_clear in -lcap-ng
| configure:13976: gcc -o conftest -g -O2 conftest.c -lcap-ng -lpthread -lrt -lm >&5
| configure:13976: $? = 0
| configure:13985: result: yes
| configure:14032: checking for Python 2.x for x >= 7
| configure:14058: result: /usr/bin/python2.7
| configure:14083: checking whether /usr/bin/python2.7 has six library
| configure:14088: result: yes
| configure:14090: checking for Python 3.x for x >= 4
| configure:14123: result: /usr/bin/python3
| configure:14143: checking for flake8
| configure:14154: result: no
| configure:14164: checking for sphinx
| configure:14175: result: no
| configure:14185: checking for dot
| configure:14196: result: no
| configure:14206: checking net/if_packet.h usability
| configure:14206: gcc -c -g -O2 conftest.c >&5
| configure:14206: $? = 0
| configure:14206: result: yes
| configure:14206: checking net/if_packet.h presence
| configure:14206: gcc -E conftest.c
| configure:14206: $? = 0
| configure:14206: result: yes
| configure:14206: checking for net/if_packet.h
| configure:14206: result: yes
| configure:14227: checking net/if_dl.h usability
| configure:14227: gcc -c -g -O2 conftest.c >&5
| conftest.c:70:23: fatal error: net/if_dl.h: No such file or directory
| #include
| ^
| compilation terminated.
| configure:14227: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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 HAVE_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | /* end confdefs.h. */
| | #include
| | #ifdef HAVE_SYS_TYPES_H
| | # include
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include
| | #endif
| | #ifdef STDC_HEADERS
| | # include
| | # include
| | #else
| | # ifdef HAVE_STDLIB_H
| | # include
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | # include
| | # endif
| | # include
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include
| | #endif
| | #include
| configure:14227: result: no
| configure:14227: checking net/if_dl.h presence
| configure:14227: gcc -E conftest.c
| conftest.c:37:23: fatal error: net/if_dl.h: No such file or directory
| #include
| ^
| compilation terminated.
| configure:14227: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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 HAVE_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | /* end confdefs.h. */
| | #include
| configure:14227: result: no
| configure:14227: checking for net/if_dl.h
| configure:14227: result: no
| configure:14306: checking whether strtok_r macro segfaults on some inputs
| configure:14342: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5
| configure:14342: $? = 0
| configure:14342: ./conftest
| configure:14342: $? = 0
| configure:14352: result: no
| configure:14360: checking whether sys_siglist is declared
| configure:14360: gcc -c -g -O2 conftest.c >&5
| configure:14360: $? = 0
| configure:14360: result: yes
| configure:14372: checking for struct stat.st_mtim.tv_nsec
| configure:14372: gcc -c -g -O2 conftest.c >&5
| configure:14372: $? = 0
| configure:14372: result: yes
| configure:14382: checking for struct stat.st_mtimensec
| configure:14382: gcc -c -g -O2 conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:45:12: error: 'struct stat' has no member named 'st_mtimensec'; did you mean 'st_mtim'?
| if (ac_aggr.st_mtimensec)
| ^
| configure:14382: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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 HAVE_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | /* end confdefs.h. */
| | #include
| |
| | int
| | main ()
| | {
| | static struct stat ac_aggr;
| | if (ac_aggr.st_mtimensec)
| | return 0;
| | ;
| | return 0;
| | }
| configure:14382: gcc -c -g -O2 conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:45:19: error: 'struct stat' has no member named 'st_mtimensec'; did you mean 'st_mtim'?
| if (sizeof ac_aggr.st_mtimensec)
| ^
| configure:14382: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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 HAVE_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | /* end confdefs.h. */
| | #include
| |
| | int
| | main ()
| | {
| | static struct stat ac_aggr;
| | if (sizeof ac_aggr.st_mtimensec)
| | return 0;
| | ;
| | return 0;
| | }
| configure:14382: result: no
| configure:14393: checking for struct ifreq.ifr_flagshigh
| configure:14393: gcc -c -g -O2 conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:45:12: error: 'struct ifreq' has no member named 'ifr_flagshigh'
| if (ac_aggr.ifr_flagshigh)
| ^
| configure:14393: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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 HAVE_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | /* end confdefs.h. */
| | #include
| |
| | int
| | main ()
| | {
| | static struct ifreq ac_aggr;
| | if (ac_aggr.ifr_flagshigh)
| | return 0;
| | ;
| | return 0;
| | }
| configure:14393: gcc -c -g -O2 conftest.c >&5
| conftest.c: In function 'main':
| conftest.c:45:19: error: 'struct ifreq' has no member named 'ifr_flagshigh'
| if (sizeof ac_aggr.ifr_flagshigh)
| ^
| configure:14393: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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 HAVE_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | /* end confdefs.h. */
| | #include
| |
| | int
| | main ()
| | {
| | static struct ifreq ac_aggr;
| | if (sizeof ac_aggr.ifr_flagshigh)
| | return 0;
| | ;
| | return 0;
| | }
| configure:14393: result: no
| configure:14407: checking for mlockall
| configure:14407: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5
| configure:14407: $? = 0
| configure:14407: result: yes
| configure:14407: checking for strnlen
| configure:14407: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5
| configure:14407: $? = 0
| configure:14407: result: yes
| configure:14407: checking for getloadavg
| configure:14407: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5
| configure:14407: $? = 0
| configure:14407: result: yes
| configure:14407: checking for statvfs
| configure:14407: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5
| configure:14407: $? = 0
| configure:14407: result: yes
| configure:14407: checking for getmntent_r
| configure:14407: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5
| configure:14407: $? = 0
| configure:14407: result: yes
| configure:14419: checking mntent.h usability
| configure:14419: gcc -c -g -O2 conftest.c >&5
| configure:14419: $? = 0
| configure:14419: result: yes
| configure:14419: checking mntent.h presence
| configure:14419: gcc -E conftest.c
| configure:14419: $? = 0
| configure:14419: result: yes
| configure:14419: checking for mntent.h
| configure:14419: result: yes
| configure:14419: checking sys/statvfs.h usability
| configure:14419: gcc -c -g -O2 conftest.c >&5
| configure:14419: $? = 0
| configure:14419: result: yes
| configure:14419: checking sys/statvfs.h presence
| configure:14419: gcc -E conftest.c
| configure:14419: $? = 0
| configure:14419: result: yes
| configure:14419: checking for sys/statvfs.h
| configure:14419: result: yes
| configure:14419: checking linux/types.h usability
| configure:14419: gcc -c -g -O2 conftest.c >&5
| configure:14419: $? = 0
| configure:14419: result: yes
| configure:14419: checking linux/types.h presence
| configure:14419: gcc -E conftest.c
| configure:14419: $? = 0
| configure:14419: result: yes
| configure:14419: checking for linux/types.h
| configure:14419: result: yes
| configure:14419: checking linux/if_ether.h usability
| configure:14419: gcc -c -g -O2 conftest.c >&5
| configure:14419: $? = 0
| configure:14419: result: yes
| configure:14419: checking linux/if_ether.h presence
| configure:14419: gcc -E conftest.c
| configure:14419: $? = 0
| configure:14419: result: yes
| configure:14419: checking for linux/if_ether.h
| configure:14419: result: yes
| configure:14419: checking stdatomic.h usability
| configure:14419: gcc -c -g -O2 conftest.c >&5
| configure:14419: $? = 0
| configure:14419: result: yes
| configure:14419: checking stdatomic.h presence
| configure:14419: gcc -E conftest.c
| configure:14419: $? = 0
| configure:14419: result: yes
| configure:14419: checking for stdatomic.h
| configure:14419: result: yes
| configure:14431: checking for net/if_mib.h
| configure:14431: gcc -c -g -O2 conftest.c >&5
| conftest.c:52:24: fatal error: net/if_mib.h: No such file or directory
| #include
| ^
| compilation terminated.
| configure:14431: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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 HAVE_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | /* end confdefs.h. */
| | #include
| | #include
| |
| | #include
| configure:14431: result: no
| configure:14471: checking for library containing backtrace
| configure:14502: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5
| configure:14502: $? = 0
| configure:14519: result: none required
| configure:14531: checking linux/perf_event.h usability
| configure:14531: gcc -c -g -O2 conftest.c >&5
| configure:14531: $? = 0
| configure:14531: result: yes
| configure:14531: checking linux/perf_event.h presence
| configure:14531: gcc -E conftest.c
| configure:14531: $? = 0
| configure:14531: result: yes
| configure:14531: checking for linux/perf_event.h
| configure:14531: result: yes
| configure:14543: checking valgrind/valgrind.h usability
| configure:14543: gcc -c -g -O2 conftest.c >&5
| conftest.c:84:31: fatal error: valgrind/valgrind.h: No such file or directory
| #include
| ^
| compilation terminated.
| configure:14543: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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 HAVE_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | /* end confdefs.h. */
| | #include
| | #ifdef HAVE_SYS_TYPES_H
| | # include
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include
| | #endif
| | #ifdef STDC_HEADERS
| | # include
| | # include
| | #else
| | # ifdef HAVE_STDLIB_H
| | # include
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | # include
| | # endif
| | # include
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include
| | #endif
| | #include
| configure:14543: result: no
| configure:14543: checking valgrind/valgrind.h presence
| configure:14543: gcc -E conftest.c
| conftest.c:51:31: fatal error: valgrind/valgrind.h: No such file or directory
| #include
| ^
| compilation terminated.
| configure:14543: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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 HAVE_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | /* end confdefs.h. */
| | #include
| configure:14543: result: no
| configure:14543: checking for valgrind/valgrind.h
| configure:14543: result: no
| configure:14553: checking for connect in -lsocket
| configure:14578: gcc -o conftest -g -O2 conftest.c -lsocket -lpthread -lrt -lm >&5
| /usr/bin/ld: cannot find -lsocket
| collect2: error: ld returned 1 exit status
| configure:14578: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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 HAVE_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_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:14587: result: no
| configure:14598: checking for library containing gethostbyname
| configure:14629: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5
| configure:14629: $? = 0
| configure:14646: result: none required
| configure:14654: checking XenServer release
| configure:14666: result: none
| configure:14678: checking for groff
| configure:14689: result: yes
| configure:14699: checking whether gcc has that supports thread_local
| configure:14716: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5
| conftest.c:51:21: fatal error: threads.h: No such file or directory
| #include
| ^
| compilation terminated.
| configure:14716: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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 HAVE_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | /* end confdefs.h. */
| | #include
| | static thread_local int var;
| | int
| | main ()
| | {
| | return var;
| | ;
| | return 0;
| | }
| configure:14724: result: no
| configure:14731: checking whether gcc supports __thread
| configure:14747: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5
| configure:14747: $? = 0
| configure:14755: result: yes
| configure:14763: checking for library containing __atomic_load_8
| configure:14794: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5
| conftest.c:59:6: warning: conflicting types for built-in function '__atomic_load_8'
| char __atomic_load_8 ();
| ^~~~~~~~~~~~~~~
| /tmp/ccKYqkgN.o: In function `main':
| /home/drizzt/ovs/conftest.c:63: undefined reference to `__atomic_load_8'
| collect2: error: ld returned 1 exit status
| configure:14794: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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 HAVE_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | #define HAVE___THREAD 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:14794: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5
| conftest.c:59:6: warning: conflicting types for built-in function '__atomic_load_8'
| char __atomic_load_8 ();
| ^~~~~~~~~~~~~~~
| configure:14794: $? = 0
| configure:14811: result: -latomic
| configure:14819: checking whether gcc supports GCC 4.0+ atomic built-ins
| configure:14886: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5
| configure:14886: $? = 0
| configure:14894: result: yes
| configure:14901: checking value of __atomic_always_lock_free(1)
| configure:14906: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5
| configure:14906: $? = 0
| configure:14906: ./conftest
| configure:14906: $? = 0
| configure:14913: result: 1
| configure:14922: checking value of __atomic_always_lock_free(2)
| configure:14927: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5
| configure:14927: $? = 0
| configure:14927: ./conftest
| configure:14927: $? = 0
| configure:14934: result: 1
| configure:14943: checking value of __atomic_always_lock_free(4)
| configure:14948: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5
| configure:14948: $? = 0
| configure:14948: ./conftest
| configure:14948: $? = 0
| configure:14955: result: 1
| configure:14964: checking value of __atomic_always_lock_free(8)
| configure:14969: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5
| configure:14969: $? = 0
| configure:14969: ./conftest
| configure:14969: $? = 0
| configure:14976: result: 1
| configure:14985: checking for library containing aio_write
| configure:15016: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5
| configure:15016: $? = 0
| configure:15033: result: none required
| configure:15051: checking for pthread_set_name_np
| configure:15051: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5
| /tmp/ccYpCVvM.o: In function `main':
| /home/drizzt/ovs/conftest.c:91: undefined reference to `pthread_set_name_np'
| collect2: error: ld returned 1 exit status
| configure:15051: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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 HAVE_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | #define HAVE___THREAD 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 declares pthread_set_name_np.
| | For example, HP-UX 11i 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 to if __STDC__ is defined, since
| | exists even on freestanding compilers. */
| |
| | #ifdef __STDC__
| | # include
| | #else
| | # include
| | #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:15051: result: no
| configure:15061: checking for pthread_setname_np() variant
| configure:15078: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5
| configure:15078: $? = 0
| configure:15104: result: glibc
| configure:15119: checking whether __linux__ is defined
| configure:15135: gcc -c -g -O2 conftest.c >&5
| configure:15135: $? = 0
| configure:15142: result: true
| configure:15152: checking linker output version information
| configure:15160: result: libX-2.7.so.0.0.90)
| configure:15164: checking for working posix_memalign
| configure:15188: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5
| configure:15188: $? = 0
| configure:15188: ./conftest
| configure:15188: $? = 0
| configure:15198: result: yes
| configure:15209: checking whether the preprocessor supports include_next
| configure:15247: gcc -c -g -O2 -Iconftestd1b -Iconftestd2 conftest.c >&5
| configure:15247: $? = 0
| configure:15268: result: yes
| configure:15289: checking whether system header files limit the line length
| configure:15312: result: no
| configure:15338: checking for stdio.h
| configure:15338: gcc -c -g -O2 conftest.c >&5
| configure:15338: $? = 0
| configure:15338: result: yes
| configure:15338: checking for string.h
| configure:15338: result: yes
| configure:15503: checking whether gcc accepts -Werror
| configure:15514: gcc -c -g -O2 -Werror conftest.c >&5
| configure:15514: $? = 0
| configure:15527: result: yes
| configure:15536: checking whether gcc accepts -Wall
| configure:15547: gcc -c -g -O2 -Werror -Wall conftest.c >&5
| configure:15547: $? = 0
| configure:15560: result: yes
| configure:15570: checking whether gcc accepts -Wextra
| configure:15581: gcc -c -g -O2 -Werror -Wextra conftest.c >&5
| configure:15581: $? = 0
| configure:15594: result: yes
| configure:15604: checking whether gcc accepts -Wno-sign-compare
| configure:15615: gcc -c -g -O2 -Werror -Wno-sign-compare conftest.c >&5
| configure:15615: $? = 0
| configure:15628: result: yes
| configure:15638: checking whether gcc accepts -Wpointer-arith
| configure:15649: gcc -c -g -O2 -Werror -Wpointer-arith conftest.c >&5
| configure:15649: $? = 0
| configure:15662: result: yes
| configure:15672: checking whether gcc accepts -Wformat -Wformat-security
| configure:15683: gcc -c -g -O2 -Werror -Wformat -Wformat-security conftest.c >&5
| configure:15683: $? = 0
| configure:15696: result: yes
| configure:15706: checking whether gcc accepts -Wswitch-enum
| configure:15717: gcc -c -g -O2 -Werror -Wswitch-enum conftest.c >&5
| configure:15717: $? = 0
| configure:15730: result: yes
| configure:15740: checking whether gcc accepts -Wunused-parameter
| configure:15751: gcc -c -g -O2 -Werror -Wunused-parameter conftest.c >&5
| configure:15751: $? = 0
| configure:15764: result: yes
| configure:15774: checking whether gcc accepts -Wbad-function-cast
| configure:15785: gcc -c -g -O2 -Werror -Wbad-function-cast conftest.c >&5
| configure:15785: $? = 0
| configure:15798: result: yes
| configure:15808: checking whether gcc accepts -Wcast-align
| configure:15819: gcc -c -g -O2 -Werror -Wcast-align conftest.c >&5
| configure:15819: $? = 0
| configure:15832: result: yes
| configure:15842: checking whether gcc accepts -Wstrict-prototypes
| configure:15853: gcc -c -g -O2 -Werror -Wstrict-prototypes conftest.c >&5
| configure:15853: $? = 0
| configure:15866: result: yes
| configure:15876: checking whether gcc accepts -Wold-style-definition
| configure:15887: gcc -c -g -O2 -Werror -Wold-style-definition conftest.c >&5
| configure:15887: $? = 0
| configure:15900: result: yes
| configure:15910: checking whether gcc accepts -Wmissing-prototypes
| configure:15921: gcc -c -g -O2 -Werror -Wmissing-prototypes conftest.c >&5
| configure:15921: $? = 0
| configure:15934: result: yes
| configure:15944: checking whether gcc accepts -Wmissing-field-initializers
| configure:15955: gcc -c -g -O2 -Werror -Wmissing-field-initializers conftest.c >&5
| configure:15955: $? = 0
| configure:15968: result: yes
| configure:15978: checking whether gcc accepts -Wthread-safety
| configure:15989: gcc -c -g -O2 -Werror -Wthread-safety conftest.c >&5
| gcc: error: unrecognized command line option '-Wthread-safety'; did you mean '-fthread-jumps'?
| configure:15989: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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 HAVE_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | #define HAVE___THREAD 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_POSIX_MEMALIGN 1
| | #define HAVE_STDIO_H 1
| | #define HAVE_STRING_H 1
| | /* end confdefs.h. */
| | int x;
| configure:16002: result: no
| configure:16012: checking whether gcc accepts -fno-strict-aliasing
| configure:16023: gcc -c -g -O2 -Werror -fno-strict-aliasing conftest.c >&5
| configure:16023: $? = 0
| configure:16036: result: yes
| configure:16046: checking whether gcc accepts -Wswitch-bool
| configure:16057: gcc -c -g -O2 -Werror -Wswitch-bool conftest.c >&5
| configure:16057: $? = 0
| configure:16070: result: yes
| configure:16080: checking whether gcc accepts -Wlogical-not-parentheses
| configure:16091: gcc -c -g -O2 -Werror -Wlogical-not-parentheses conftest.c >&5
| configure:16091: $? = 0
| configure:16104: result: yes
| configure:16114: checking whether gcc accepts -Wsizeof-array-argument
| configure:16125: gcc -c -g -O2 -Werror -Wsizeof-array-argument conftest.c >&5
| configure:16125: $? = 0
| configure:16138: result: yes
| configure:16148: checking whether gcc accepts -Wbool-compare
| configure:16159: gcc -c -g -O2 -Werror -Wbool-compare conftest.c >&5
| configure:16159: $? = 0
| configure:16172: result: yes
| configure:16182: checking whether gcc accepts -Wshift-negative-value
| configure:16193: gcc -c -g -O2 -Werror -Wshift-negative-value conftest.c >&5
| configure:16193: $? = 0
| configure:16206: result: yes
| configure:16216: checking whether gcc accepts -Wduplicated-cond
| configure:16227: gcc -c -g -O2 -Werror -Wduplicated-cond conftest.c >&5
| configure:16227: $? = 0
| configure:16240: result: yes
| configure:16250: checking whether gcc accepts -Qunused-arguments
| configure:16261: gcc -c -g -O2 -Werror -Qunused-arguments conftest.c >&5
| gcc: error: unrecognized command line option '-Qunused-arguments'; did you mean '-Wunused-argument'?
| configure:16261: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "openvswitch"
| | #define PACKAGE_TARNAME "openvswitch"
| | #define PACKAGE_VERSION "2.7.90"
| | #define PACKAGE_STRING "openvswitch 2.7.90"
| | #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| | #define PACKAGE_URL ""
| | #define PACKAGE "openvswitch"
| | #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| | #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 HAVE_LIBCAPNG 1
| | #define HAVE_IF_PACKET 1
| | #define HAVE_DECL_SYS_SIGLIST 1
| | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| | #define HAVE_MLOCKALL 1
| | #define HAVE_STRNLEN 1
| | #define HAVE_GETLOADAVG 1
| | #define HAVE_STATVFS 1
| | #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| | #define HAVE_BACKTRACE 1
| | #define HAVE_LINUX_PERF_EVENT_H 1
| | #define HAVE___THREAD 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_POSIX_MEMALIGN 1
| | #define HAVE_STDIO_H 1
| | #define HAVE_STRING_H 1
| | /* end confdefs.h. */
| | int x;
| configure:16274: result: no
| configure:16284: checking whether gcc accepts -Wno-unused
| configure:16295: gcc -c -g -O2 -Werror -Wno-unused conftest.c >&5
| configure:16295: $? = 0
| configure:16308: result: yes
| configure:16325: checking whether gcc accepts -Wno-unused-parameter
| configure:16336: gcc -c -g -O2 -Werror -Wno-unused-parameter conftest.c >&5
| configure:16336: $? = 0
| configure:16349: result: yes
| configure:16373: checking target hint for cgcc
| configure:16387: result: other
| configure:21751: checking whether dpdk datapath is enabled
| configure:21754: result: no
| configure:22142: gcc -c -g -O2 conftest.c >&5
| conftest.c:61:1: note: #pragma message: Checking for pragma message
| _Pragma("message(\"Checking for pragma message\")")
| ^~~~~~~
| configure:22142: $? = 0
| configure:22196: checking whether make supports nested variables
| configure:22213: result: yes
| configure:22334: checking that generated files are newer than configure
| configure:22340: result: done
| configure:22452: creating ./config.status
|
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
|
| This file was extended by openvswitch config.status 2.7.90, which was
| generated by GNU Autoconf 2.69. Invocation command line was
|
| CONFIG_FILES =
| CONFIG_HEADERS =
| CONFIG_LINKS =
| CONFIG_COMMANDS =
| $ ./config.status
|
| on bananapi
|
| config.status:1237: creating lib/stdio.h
| config.status:1237: creating lib/string.h
| config.status:1237: creating ovsdb/libovsdb.sym
| config.status:1237: creating ofproto/libofproto.sym
| config.status:1237: creating lib/libsflow.sym
| config.status:1237: creating lib/libopenvswitch.sym
| config.status:1237: creating ovn/lib/libovn.sym
| config.status:1237: creating vtep/libvtep.sym
| config.status:1237: creating Makefile
| config.status:1237: creating datapath/Makefile
| config.status:1237: creating datapath/linux/Kbuild
| config.status:1237: creating datapath/linux/Makefile
| config.status:1237: creating datapath/linux/Makefile.main
| config.status:1237: creating tests/atlocal
| config.status:1237: creating lib/libopenvswitch.pc
| config.status:1237: creating lib/libsflow.pc
| config.status:1237: creating ofproto/libofproto.pc
| config.status:1237: creating ovsdb/libovsdb.pc
| config.status:1237: creating include/openvswitch/version.h
| config.status:1237: creating config.h
| config.status:1466: executing tests/atconfig commands
| config.status:1466: executing depfiles commands
| config.status:1466: executing libtool commands
| config.status:1466: executing include/openflow/openflow.h.stamp commands
| config.status:1466: executing utilities/bugtool/dummy commands
| config.status:1466: executing ovn/dummy commands
| config.status:1466: executing ovn/utilities/dummy commands
|
| ## ---------------- ##
| ## Cache variables. ##
| ## ---------------- ##
|
| ac_cv_build=armv7l-unknown-linux-gnueabihf
| ac_cv_c_bigendian=no
| ac_cv_c_compiler_gnu=yes
| ac_cv_env_CC_set=
| ac_cv_env_CC_value=
| ac_cv_env_CFLAGS_set=
| ac_cv_env_CFLAGS_value=
| ac_cv_env_CPPFLAGS_set=
| ac_cv_env_CPPFLAGS_value=
| ac_cv_env_CPP_set=
| ac_cv_env_CPP_value=
| ac_cv_env_KARCH_set=
| ac_cv_env_KARCH_value=
| ac_cv_env_LDFLAGS_set=
| ac_cv_env_LDFLAGS_value=
| ac_cv_env_LIBS_set=
| ac_cv_env_LIBS_value=
| ac_cv_env_LT_SYS_LIBRARY_PATH_set=
| ac_cv_env_LT_SYS_LIBRARY_PATH_value=
| ac_cv_env_PERL_set=
| ac_cv_env_PERL_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_getloadavg=yes
| ac_cv_func_getmntent_r=yes
| ac_cv_func_mlockall=yes
| ac_cv_func_pthread_set_name_np=no
| 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_strerror_r=yes
| ac_cv_have_decl_sys_siglist=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_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_net_if_packet_h=yes
| 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=no
| ac_cv_header_vmware_h=no
| ac_cv_header_windows_h=no
| ac_cv_host=armv7l-unknown-linux-gnueabihf
| ac_cv_lib_cap_ng_capng_clear=yes
| ac_cv_lib_socket_connect=no
| ac_cv_member_struct_ifreq_ifr_flagshigh=no
| 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_PERL=/usr/bin/perl
| ac_cv_path_PKG_CONFIG=/usr/bin/pkg-config
| ac_cv_path_SED=/usr/bin/sed
| ac_cv_path_install='/usr/bin/install -c'
| ac_cv_path_lt_DD=/usr/bin/dd
| ac_cv_path_mkdir=/usr/bin/mkdir
| ac_cv_prog_AWK=gawk
| ac_cv_prog_CPP='gcc -E'
| ac_cv_prog_ac_ct_AR=ar
| ac_cv_prog_ac_ct_CC=gcc
| 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_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_create=-lpthread
| ac_cv_search_timer_create=-lrt
| ac_cv_sparse_target=other
| ac_cv_sys_file_offset_bits=64
| ac_cv_sys_largefile_CC=no
| am_cv_CC_dependencies_compiler_type=none
| am_cv_make_support_nested_variables=yes
| am_cv_prog_cc_c_o=yes
| am_cv_prog_tar_pax=gnutar
| ax_cv_func_posix_memalign_works=yes
| cl_cv_x64=no
| gl_cv_have_include_next=yes
| gl_cv_next_stdio_h=''
| gl_cv_next_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_NM='/usr/bin/nm -B'
| lt_cv_path_mainfest_tool=no
| lt_cv_prog_compiler_c_o=yes
| lt_cv_prog_compiler_pic='-fPIC -DPIC'
| lt_cv_prog_compiler_pic_works=yes
| lt_cv_prog_compiler_rtti_exceptions=no
| lt_cv_prog_compiler_static_works=yes
| lt_cv_prog_gnu_ld=yes
| lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
| lt_cv_shlibpath_overrides_runpath=no
| 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][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\'''
| lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\'''
| lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
| lt_cv_sys_global_symbol_to_import=
| 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
| lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1'
| ovs_cv__Qunused_arguments=no
| ovs_cv__Wall=yes
| ovs_cv__Wbad_function_cast=yes
| ovs_cv__Wbool_compare=yes
| ovs_cv__Wcast_align=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__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__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___thread=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=no
| ovs_cv_flake8=no
| ovs_cv_gcc4_atomics=yes
| ovs_cv_groff=yes
| ovs_cv_linux=true
| ovs_cv_pthread_setname_np=glibc
| ovs_cv_python3=/usr/bin/python3
| ovs_cv_python=/usr/bin/python2.7
| ovs_cv_sphinx=no
| ovs_cv_strtok_r_bug=no
| ovs_cv_thread_local=no
| ovs_cv_xsversion=none
|
| ## ----------------- ##
| ## Output variables. ##
| ## ----------------- ##
|
| ACLOCAL='${SHELL} /home/drizzt/ovs/build-aux/missing aclocal-1.15'
| AMDEPBACKSLASH=''
| AMDEP_FALSE=''
| AMDEP_TRUE='#'
| AMTAR='$${TAR-tar}'
| AM_BACKSLASH='\'
| AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
| AM_DEFAULT_VERBOSITY='1'
| AM_V='$(V)'
| AR='ar'
| AUTOCONF='${SHELL} /home/drizzt/ovs/build-aux/missing autoconf'
| AUTOHEADER='${SHELL} /home/drizzt/ovs/build-aux/missing autoheader'
| AUTOM4TE='${SHELL} /home/drizzt/ovs/build-aux/missing autom4te'
| AUTOMAKE='${SHELL} /home/drizzt/ovs/build-aux/missing automake-1.15'
| AWK='gawk'
| CAPNG_LDADD='-lcap-ng'
| CC='$(if $(C),env REAL_CC="gcc" CHECK="$(SPARSE) -I $(top_srcdir)/include/sparse $(SPARSEFLAGS) $(SPARSE_EXTRA_INCLUDES) " cgcc $(CGCCFLAGS),gcc)'
| CCDEPMODE='depmode=none'
| CFLAGS='-g -O2'
| CGCCFLAGS=''
| CPP='gcc -E'
| CPPFLAGS=''
| CYGPATH_W='echo'
| DBDIR='${sysconfdir}/${PACKAGE}'
| DEFS='-DHAVE_CONFIG_H'
| DEPDIR='.deps'
| DLLTOOL='false'
| DPDK_NETDEV_FALSE=''
| DPDK_NETDEV_TRUE='#'
| DPDK_vswitchd_LDFLAGS=''
| DSYMUTIL=''
| DUMPBIN=''
| ECHO_C=''
| ECHO_N='-n'
| ECHO_T=''
| EGREP='/usr/bin/grep -E'
| ESX_FALSE=''
| ESX_TRUE='#'
| EXEEXT=''
| FGREP='/usr/bin/grep -F'
| GREP='/usr/bin/grep'
| 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_IF_PACKET_FALSE='#'
| HAVE_IF_PACKET_TRUE=''
| HAVE_LIBCAPNG='yes'
| 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_PYTHON3='yes'
| HAVE_PYTHON3_FALSE='#'
| HAVE_PYTHON3_TRUE=''
| HAVE_PYTHON='yes'
| HAVE_PYTHON_FALSE='#'
| HAVE_PYTHON_TRUE=''
| HAVE_SPHINX_FALSE=''
| HAVE_SPHINX_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=''
| KBUILD=''
| LD='/usr/bin/ld'
| LDFLAGS=''
| LIBOBJS=''
| LIBS='-latomic -lpthread -lrt -lm '
| 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'
| LT_SYS_LIBRARY_PATH=''
| MAKEINFO='${SHELL} /home/drizzt/ovs/build-aux/missing makeinfo'
| MANIFEST_TOOL=':'
| MKDIR_P='/usr/bin/mkdir -p'
| MSVC64_LDFLAGS=''
| MSVC_CFLAGS=''
| NDEBUG_FALSE=''
| NDEBUG_TRUE='#'
| NEXT_AS_FIRST_DIRECTIVE_STDIO_H=''
| NEXT_AS_FIRST_DIRECTIVE_STRING_H=''
| NEXT_STDIO_H=''
| NEXT_STRING_H=''
| NM='/usr/bin/nm -B'
| NMEDIT=''
| OBJDUMP='objdump'
| OBJEXT='o'
| OTOOL64=''
| OTOOL=''
| OVS_CFLAGS=''
| OVS_LDFLAGS=''
| OVS_LTINFO='-release 2.7 -version-info 0:90'
| PACKAGE='openvswitch'
| PACKAGE_BUGREPORT='bugs@openvswitch.org'
| PACKAGE_NAME='openvswitch'
| PACKAGE_STRING='openvswitch 2.7.90'
| PACKAGE_TARNAME='openvswitch'
| PACKAGE_URL=''
| PACKAGE_VERSION='2.7.90'
| PATH_SEPARATOR=':'
| PERL='/usr/bin/perl'
| PKG_CONFIG='/usr/bin/pkg-config'
| 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=''
| PYTHON3='/usr/bin/python3'
| PYTHON='/usr/bin/python2.7'
| RANLIB='ranlib'
| RUNDIR='${localstatedir}/run/openvswitch'
| SED='/usr/bin/sed'
| SET_MAKE=''
| SHELL='/bin/sh'
| SPARSE='sparse'
| SPARSEFLAGS=''
| SPARSE_EXTRA_INCLUDES='-I /usr/local/include '
| SSL_INCLUDES=''
| SSL_LDFLAGS=''
| SSL_LIBS='-lssl -lcrypto'
| STRIP='strip'
| VERSION='2.7.90'
| VSTUDIO_CONFIG=''
| VSTUDIO_DDK_FALSE=''
| VSTUDIO_DDK_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'
| WIN32_FALSE=''
| WIN32_TRUE='#'
| ac_ct_AR='ar'
| ac_ct_CC='gcc'
| ac_ct_DUMPBIN=''
| am__EXEEXT_FALSE=''
| am__EXEEXT_TRUE='#'
| am__fastdepCC_FALSE=''
| am__fastdepCC_TRUE='#'
| am__include='include'
| am__isrc=''
| am__leading_dot='.'
| am__nodep=''
| am__quote=''
| am__tar='tar --format=posix -chf - "$$tardir"'
| am__untar='tar -xf -'
| bindir='/usr/bin'
| build='armv7l-unknown-linux-gnueabihf'
| build_alias=''
| build_cpu='armv7l'
| build_os='linux-gnueabihf'
| build_vendor='unknown'
| datadir='/usr/share'
| datarootdir='${prefix}/share'
| docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
| dvidir='${docdir}'
| exec_prefix='/usr'
| host='armv7l-unknown-linux-gnueabihf'
| host_alias=''
| host_cpu='armv7l'
| host_os='linux-gnueabihf'
| host_vendor='unknown'
| htmldir='${docdir}'
| includedir='/usr/include'
| infodir='/usr/share/info'
| install_sh='${SHELL} /home/drizzt/ovs/build-aux/install-sh'
| libdir='/usr/lib64'
| libexecdir='/usr/libexec'
| localedir='${datarootdir}/locale'
| localstatedir='/var'
| mandir='/usr/share/man'
| mkdir_p='$(MKDIR_P)'
| oldincludedir='/usr/include'
| pdfdir='${docdir}'
| prefix='/usr'
| program_transform_name='s&^&&'
| psdir='${docdir}'
| sbindir='/usr/sbin'
| sharedstatedir='/var/lib'
| sysconfdir='/etc'
| target_alias=''
|
| ## ----------- ##
| ## confdefs.h. ##
| ## ----------- ##
|
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "2.7.90"
| #define PACKAGE_STRING "openvswitch 2.7.90"
| #define PACKAGE_BUGREPORT "bugs@openvswitch.org"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "2.7.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 _FILE_OFFSET_BITS 64
| #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 HAVE_LIBCAPNG 1
| #define HAVE_IF_PACKET 1
| #define HAVE_DECL_SYS_SIGLIST 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_GETLOADAVG 1
| #define HAVE_STATVFS 1
| #define HAVE_GETMNTENT_R 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_STDATOMIC_H 1
| #define HAVE_BACKTRACE 1
| #define HAVE_LINUX_PERF_EVENT_H 1
| #define HAVE___THREAD 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_POSIX_MEMALIGN 1
| #define HAVE_STDIO_H 1
| #define HAVE_STRING_H 1
| #define HAVE_PRAGMA_MESSAGE 1
|
| configure: exit 0
|
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
|
| This file was extended by openvswitch config.status 2.7.90, which was
| generated by GNU Autoconf 2.69. Invocation command line was
|
| CONFIG_FILES =
| CONFIG_HEADERS =
| CONFIG_LINKS =
| CONFIG_COMMANDS =
| $ ./config.status Makefile depfiles
|
| on bananapi
|
| config.status:1237: creating Makefile
| config.status:1466: executing depfiles commands
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment