Re: [dpdk-dev] [PATCH 01/10] mk: adjust gcc flags for new gcc 7 warnings

2017-05-05 Thread Van Haaren, Harry
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Thomas Monjalon > Sent: Friday, May 5, 2017 11:03 AM > To: dev@dpdk.org; Richardson, Bruce ; Stephen > Hemminger > > Subject: Re: [dpdk-dev] [PATCH 01/10] mk: adjust gcc flags for new gcc 7 > warnings > > In

Re: [dpdk-dev] [PATCH 01/10] mk: adjust gcc flags for new gcc 7 warnings

2017-05-05 Thread Bruce Richardson
On Fri, May 05, 2017 at 12:02:44PM +0200, Thomas Monjalon wrote: > In this series, there are some fixes for fall-through comments, > missing break and missing initializers. > I think there is no discussion about accepting them in 17.05. > The last item to discuss it the new snprintf warning: > > 0

Re: [dpdk-dev] [PATCH 01/10] mk: adjust gcc flags for new gcc 7 warnings

2017-05-05 Thread Thomas Monjalon
In this series, there are some fixes for fall-through comments, missing break and missing initializers. I think there is no discussion about accepting them in 17.05. The last item to discuss it the new snprintf warning: 05/05/2017 11:42, Bruce Richardson: > On Thu, May 04, 2017 at 09:38:08AM -0700

Re: [dpdk-dev] [PATCH 01/10] mk: adjust gcc flags for new gcc 7 warnings

2017-05-05 Thread Bruce Richardson
On Thu, May 04, 2017 at 09:38:08AM -0700, Stephen Hemminger wrote: > On Thu, 4 May 2017 16:38:13 +0100 > Bruce Richardson wrote: > > > There are two new warnings in GCC 7 that cause problems in the DPDK > > compile. > > > > 1. GCC now warns if you have a switch fall-through without a suitable >

Re: [dpdk-dev] [PATCH 01/10] mk: adjust gcc flags for new gcc 7 warnings

2017-05-04 Thread Stephen Hemminger
On Thu, 4 May 2017 16:38:13 +0100 Bruce Richardson wrote: > There are two new warnings in GCC 7 that cause problems in the DPDK > compile. > > 1. GCC now warns if you have a switch fall-through without a suitable > comment indicating that it was intentional. The compiler supports a number > of

[dpdk-dev] [PATCH 01/10] mk: adjust gcc flags for new gcc 7 warnings

2017-05-04 Thread Bruce Richardson
There are two new warnings in GCC 7 that cause problems in the DPDK compile. 1. GCC now warns if you have a switch fall-through without a suitable comment indicating that it was intentional. The compiler supports a number of levels of warning which are triggered depending on the type of message us