From aa135fb9b164b37ac1f7c131e8018253904806ef Mon Sep 17 00:00:00 2001 From: Ilya Maximets Date: Thu, 3 Oct 2019 13:45:29 +0200 Subject: ci: Get rid of OVS_CFLAGS in CI scripts. Our CI scripts uses OVS_CFLAGS variable that is intended for internal usage by 'configure' script only. Usual CFLAGS should be used instead to avoid giving bad example to users. Additionally, '-m32' flag passed directly to CC variable to avoid splitting it from the compiler invocations and force same API/ABI for invocations of 'configure' and 'make'. 'BUILD_ENV' dropped as not needed anymore. Before this patch 'configure' always checked for 64bit libraries regardless of fact that we're going to build 32bit binary. This caused issues if only 64bit version of desired library was available. Suggested-by: Ben Pfaff Acked-by: Ben Pfaff Signed-off-by: Ilya Maximets --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index b547eb041..eabbad92d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,7 +39,7 @@ env: - TESTSUITE=1 LIBS=-ljemalloc - KERNEL_LIST="5.0 4.20 4.19 4.18 4.17 4.16" - KERNEL_LIST="4.15 4.14 4.9 4.4 3.19 3.16" - - BUILD_ENV="-m32" OPTS="--disable-ssl" + - M32=1 OPTS="--disable-ssl" - DPDK=1 OPTS="--enable-shared" - DPDK_SHARED=1 - DPDK_SHARED=1 OPTS="--enable-shared" -- cgit v1.2.1