Re: [ovs-dev] [PATCH] datapath/linux: add KCFLAGS var to modules Makefile.main.in

2014-11-26 Thread Alexandru Ardelean
Just checked. That seems to have did it. I'll update the OpenWRT patches folder with this patch (remove my patch) and update the build rules. Thank you. On Wed, Nov 26, 2014 at 4:53 PM, Thomas Graf wrote: > On 11/26/14 at 03:54pm, Alexandru Ardelean wrote: > > Back with some findings. > > > >

Re: [ovs-dev] [PATCH] datapath/linux: add KCFLAGS var to modules Makefile.main.in

2014-11-26 Thread Thomas Graf
On 11/26/14 at 03:54pm, Alexandru Ardelean wrote: > Back with some findings. > > Could you please take a look at this Makefile ? > https://github.com/openwrt/packages/blob/master/net/openvswitch/Makefile > > This is our package file that wraps the OpenWRT build system around > OpenVSwitch. > Star

Re: [ovs-dev] [PATCH] datapath/linux: add KCFLAGS var to modules Makefile.main.in

2014-11-26 Thread Alexandru Ardelean
Back with some findings. Could you please take a look at this Makefile ? https://github.com/openwrt/packages/blob/master/net/openvswitch/Makefile This is our package file that wraps the OpenWRT build system around OpenVSwitch. Starting at line 127, there's the Build/Compile make rule that's used

Re: [ovs-dev] [PATCH] datapath/linux: add KCFLAGS var to modules Makefile.main.in

2014-11-25 Thread Alexandru Ardelean
It's been a while since I made that patch. I'll have to check. I'll be back in a while with a few findings. Thanks On Tue, Nov 25, 2014 at 6:10 PM, Thomas Graf wrote: > On 11/25/14 at 07:47am, Ben Pfaff wrote: > > On Tue, Oct 28, 2014 at 07:51:16AM -0700, Ben Pfaff wrote: > > > From: Alexandru

Re: [ovs-dev] [PATCH] datapath/linux: add KCFLAGS var to modules Makefile.main.in

2014-11-25 Thread Thomas Graf
On 11/25/14 at 07:47am, Ben Pfaff wrote: > On Tue, Oct 28, 2014 at 07:51:16AM -0700, Ben Pfaff wrote: > > From: Alexandru Ardelean > > > > This is mostly required because of GCC 4.9 which seems > > to error out with: > > openvswitch/datapath/linux/datapath.c:2108:10: > >error: macro "DA

Re: [ovs-dev] [PATCH] datapath/linux: add KCFLAGS var to modules Makefile.main.in

2014-11-25 Thread Ben Pfaff
On Tue, Oct 28, 2014 at 07:51:16AM -0700, Ben Pfaff wrote: > From: Alexandru Ardelean > > This is mostly required because of GCC 4.9 which seems > to error out with: > openvswitch/datapath/linux/datapath.c:2108:10: >error: macro "DATE" might prevent reproducible builds > > We would hav

[ovs-dev] [PATCH] datapath/linux: add KCFLAGS var to modules Makefile.main.in

2014-10-28 Thread Ben Pfaff
From: Alexandru Ardelean This is mostly required because of GCC 4.9 which seems to error out with: openvswitch/datapath/linux/datapath.c:2108:10: error: macro "DATE" might prevent reproducible builds We would have wanted to add '-Wno-error=date-time' directly but that would be too speci