Re: [ovs-dev] [PATCH 1/2] netdev-dpdk: fix cross compilation failure

2016-08-30 Thread Ben Pfaff
On Wed, Aug 24, 2016 at 12:10:14AM +0530, Hemant Agrawal wrote: > configure with_dpdk and cross compile fails with: > "configure: error: cannot check for file existence > when cross compiling" > > This is due to the usages of AC_CHECK_FILES. > > AC_CHECK_FILES only works when not cross compiling.

[ovs-dev] [PATCH 1/2] netdev-dpdk: fix cross compilation failure

2016-08-23 Thread Hemant Agrawal
configure with_dpdk and cross compile fails with: "configure: error: cannot check for file existence when cross compiling" This is due to the usages of AC_CHECK_FILES. AC_CHECK_FILES only works when not cross compiling. It test a feature of the host machine, and therefore, die when cross-compilin