Re: [dpdk-dev] [PATCH v2] acl: fix missing flags when compiling without AVX2

2019-03-27 Thread Thomas Monjalon
11/03/2019 17:31, Bruce Richardson: > On Mon, Mar 11, 2019 at 03:18:11PM +, Andrius Sirvys wrote: > > When compiling the ACL library on a system without AVX2 support, > > the flags used to compile the AVX2-specific code for later run-time > > use were not based on the regular cflags for the res

Re: [dpdk-dev] [PATCH v2] acl: fix missing flags when compiling without AVX2

2019-03-11 Thread Bruce Richardson
On Mon, Mar 11, 2019 at 03:18:11PM +, Andrius Sirvys wrote: > When compiling the ACL library on a system without AVX2 support, > the flags used to compile the AVX2-specific code for later run-time > use were not based on the regular cflags for the rest of the library. > This can cause errors du

[dpdk-dev] [PATCH v2] acl: fix missing flags when compiling without AVX2

2019-03-11 Thread Andrius Sirvys
When compiling the ACL library on a system without AVX2 support, the flags used to compile the AVX2-specific code for later run-time use were not based on the regular cflags for the rest of the library. This can cause errors due to symbols being missed/undefined due to incorrect flags. For example,