From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from bilemail1.empirix.com (bilemail1.empirix.com [208.67.76.245]) by dpdk.org (Postfix) with ESMTP id 7592558F7 for ; Fri, 28 Aug 2015 11:07:10 +0200 (CEST) Received: from BILEMAIL1.empirix.com (10.17.8.30) by bilemail1.empirix.com (10.17.8.30) with Microsoft SMTP Server (TLS) id 15.0.775.38; Fri, 28 Aug 2015 05:06:51 -0400 Received: from BILEMAIL1.empirix.com ([fe80::f9e0:9293:2523:f021]) by bilemail1.empirix.com ([fe80::f9e0:9293:2523:f021%22]) with mapi id 15.00.0775.031; Fri, 28 Aug 2015 05:06:51 -0400 From: "Montorsi, Francesco" To: "dev@dpdk.org" Thread-Topic: "cannot use T= with gcov target" when doing "makefile clean" with DPDK-2.1.0 Thread-Index: AdDhbi380VYQE1bsROKmpNhj2Fpn4Q== Date: Fri, 28 Aug 2015 09:06:50 +0000 Message-ID: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.12.50.88] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: [dpdk-dev] "cannot use T= with gcov target" when doing "makefile clean" with DPDK-2.1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Aug 2015 09:07:10 -0000 Hi all, I found that after unzipping dpdk-2.1.0.tar.gz if I run: # make T=3Dx86_64-native-linuxapp-gcc O=3Dx86_64-native-linuxapp-gcc= config=09 And then # make V=3D1 T=3Dx86_64-native-linuxapp-gcc O=3Dx86_64-native-linuxapp-= gcc clean I get: [...] =3D=3D Clean app/proc_info make -f /home/fmontorsi/Downloads/dpdk-2.1.0/GNUmakefile gcovclean make -f /home/fmontorsi/Downloads/dpdk-2.1.0/mk/rte.sdkgcov.mk gcovclean /home/fmontorsi/Downloads/dpdk-2.1.0/mk/rte.sdkgcov.mk:34: *** "Cannot use = T=3D with gcov target". Stop. make[2]: *** [gcovclean] Error 2 make[1]: *** [clean] Error 2 make: *** [clean] Error 2 =09 I guess the fix is: --- /home/fmontorsi/Downloads/dpdk-2.1.0/mk/rte.sdkbuild.mk 2015-08-17 19:3= 5:37.000000000 +0200 +++ dpdk-2.1.0/mk/rte.sdkbuild.mk 2015-08-28 10:52:56.092466418 +0200 @@ -85,5 +85,7 @@ @$(RTE_SDK)/scripts/gen-config-h.sh $(RTE_OUTPUT)/.config \ > $(RTE_OUTPUT)/include/rte_config.h +ifndef T $(Q)$(MAKE) -f $(RTE_SDK)/GNUmakefile gcovclean +endif @echo Clean complete Let me know if the patch above is wrong or I should do something else to co= ntribute it to the project in the right way. Thanks, Francesco Montorsi