From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [dpdk-stable] [PATCH v13 1/6] mk: fix makefile based cross build errors Date: Wed, 27 Jun 2018 23:00:38 +0200 Message-ID: <2581181.jGqILcfPxU@xps> References: <20180619103657.19186-1-gavin.hu@arm.com> <20180625024913.17219-1-gavin.hu@arm.com> <20180625024913.17219-2-gavin.hu@arm.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Cc: stable@dpdk.org, dev@dpdk.org, nd@arm.com To: Gavin Hu Return-path: In-Reply-To: <20180625024913.17219-2-gavin.hu@arm.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 25/06/2018 04:49, Gavin Hu: > From: gavin hu >=20 > The "-Wimplicit-fallthrough=3D2" option was introduced into gcc 7.0, it w= as > enabled when the cross compiler gcc is greater than 7.0, but for the host > side buildtools/pmdinfogen, if the native gcc is older than 7.0, or the > host cc compiler is clang, it should not be enabled. >=20 > The fix is to differentiate the host gcc Werror options from the cross gc= c. >=20 > gcc -Wp,-MD,./.pmdinfogen.o.d.tmp -W -Wall -Wstrict-prototypes > -Wmissing-prototypes -Wmissing-declarations -Wold-style-definition > -Wpointer-arith -Wcast-align -Wnested-externs -Wcast-qual > -Wformat-nonliteral -Wformat-security -Wundef -Wwrite-strings -Wdeprecated > -Werror -Wimplicit-fallthrough=3D2 -Dbbb -Wno-format-truncation -g > -I/home/gavin/arm_repo/dpdk/build/include -o pmdinfogen.o -c > ~/dpdk/buildtools/pmdinfogen/pmdinfogen.c gcc: error: > unrecognized command line option =E2=80=98-Wimplicit-fallthrough=3D2=E2= =80=99 > ~/dpdk/mk/internal/rte.compile-pre.mk:114: recipe for target 'pmdinfogen.= o' > failed make[3]: *** [pmdinfogen.o] Error 1 >=20 > Fixes: ced3e6f8 ("mk: adjust gcc flags for new gcc 7 warnings") > Cc: stable@dpdk.org >=20 > Signed-off-by: Gavin Hu > Reviewed-by: Honnappa Nagarahalli > Reviewed-by: Steve Capper Acked-by: Thomas Monjalon