Re: [ovs-dev] [PATCH v2] netdev-dpdk: fix ARM cross compilation failure

2017-04-14 Thread Ben Pfaff
> To: Hemant Agrawal > > > Cc: b...@ovn.org; d...@openvswitch.org > > > Subject: Re: [ovs-dev] [PATCH v2] netdev-dpdk: fix ARM cross compilation > > > failure > > > > > > The 03/20/2017 16:43, Hemant Agrawal wrote: > > > > configure w

Re: [ovs-dev] [PATCH v2] netdev-dpdk: fix ARM cross compilation failure

2017-03-20 Thread Jianbo Liu
The 03/21/2017 06:43, Hemant Agrawal wrote: > > > > -Original Message- > > From: Jianbo Liu [mailto:jianbo@arm.com] > > Sent: Tuesday, March 21, 2017 10:55 AM > > To: Hemant Agrawal > > Cc: b...@ovn.org; d...@openvswitch.org > > Subject: Re:

Re: [ovs-dev] [PATCH v2] netdev-dpdk: fix ARM cross compilation failure

2017-03-20 Thread Hemant Agrawal
> -Original Message- > From: Jianbo Liu [mailto:jianbo@arm.com] > Sent: Tuesday, March 21, 2017 10:55 AM > To: Hemant Agrawal > Cc: b...@ovn.org; d...@openvswitch.org > Subject: Re: [ovs-dev] [PATCH v2] netdev-dpdk: fix ARM cross compilation > failure >

Re: [ovs-dev] [PATCH v2] netdev-dpdk: fix ARM cross compilation failure

2017-03-20 Thread Jianbo Liu
The 03/20/2017 16:43, 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. It test > a feature o

[ovs-dev] [PATCH v2] netdev-dpdk: fix ARM cross compilation failure

2017-03-20 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