From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933479AbbIVNX1 (ORCPT ); Tue, 22 Sep 2015 09:23:27 -0400 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:43526 "EHLO mail3-relais-sop.national.inria.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932214AbbIVNX0 (ORCPT ); Tue, 22 Sep 2015 09:23:26 -0400 X-IronPort-AV: E=Sophos;i="5.17,573,1437429600"; d="scan'208";a="148214841" Date: Tue, 22 Sep 2015 15:23:24 +0200 (CEST) From: Julia Lawall X-X-Sender: jll@hadrien To: Andrzej Hajda cc: Julia Lawall , linux-kernel@vger.kernel.org, Bartlomiej Zolnierkiewicz , Marek Szyprowski , Gilles Muller , Nicolas Palix , Michal Marek , "moderated list:COCCINELLE/Semantic Patches (SmPL)" Subject: Re: [PATCH] Coccinelle: remove incorrect -include option transformation In-Reply-To: <56015315.507@samsung.com> Message-ID: References: <1442926130-17817-1-git-send-email-a.hajda@samsung.com> <56015315.507@samsung.com> User-Agent: Alpine 2.10 (DEB 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 22 Sep 2015, Andrzej Hajda wrote: > On 09/22/2015 02:58 PM, Julia Lawall wrote: > > > > On Tue, 22 Sep 2015, Andrzej Hajda wrote: > > > >> kbuild/gcc uses -include option to include files and -I to provide paths for > >> #include <> directive. The same is true for spatch. > >> > >> Signed-off-by: Andrzej Hajda > >> --- > >> scripts/coccicheck | 1 - > >> 1 file changed, 1 deletion(-) > >> > >> diff --git a/scripts/coccicheck b/scripts/coccicheck > >> index bbf901a..6d84b05 100755 > >> --- a/scripts/coccicheck > >> +++ b/scripts/coccicheck > >> @@ -30,7 +30,6 @@ FLAGS="$SPFLAGS --very-quiet" > >> # spatch only allows include directories with the syntax "-I include" > >> # while gcc also allows "-Iinclude" and "-include include" > >> COCCIINCLUDE=${LINUXINCLUDE//-I/-I } > >> -COCCIINCLUDE=${COCCIINCLUDE//-include/-I} > > I'm not sure of the meaning of the above notation, nor what is the > > intention. Coccinelle does have a --include option, but it doesn't mean > > the same thing as -I. It is a way to have a file be included that is not > > included according to the normal inclusion strategy. For example, if a.h > > includes b.h which includes c.h, and if one considers that c.h is really > > important for having the right type information, but one doesn't want the > > cost of including everything via --recursive-includes, then one could put > > --include c.h. > > This option has the same meaning for gcc. > But the patch is incorrect. It should be: > > COCCIINCLUDE=${COCCIINCLUDE// -include/ --include} > > gcc option '-include' should be converted to spatch option '--include', > ie one minus should be added. OK, do you want to submit a patch for that? thanks, julia > > Regards > Andrzej > > > > > > julia > > > > > >> if [ "$C" = "1" -o "$C" = "2" ]; then > >> ONLINE=1 > >> -- > >> 1.9.1 > >> > >> > >