From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D7D0EA034C; Wed, 22 Jun 2022 18:05:42 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AE68740A84; Wed, 22 Jun 2022 18:05:42 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 4DD2A4069F for ; Wed, 22 Jun 2022 18:05:41 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 76DFD20C6379; Wed, 22 Jun 2022 09:05:40 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 76DFD20C6379 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1655913940; bh=+N3sinJPB7aX5yvZAO2jVlXvGfQar1YauJD1ha0IcII=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=keeJlRzmILM3rUzucqVUVryZ6MYLdiudmneX8NfoMTiTFYLBJ/ZelI9NyASsBTkoh rAzM3KYtHSRmbFB30lLNJXDwBVd+TRbBRtbgqFvMeyVd2kHqg87wAZrJlOOxpR9GpS 4SKKc1XDO4pIhpzEq2vJVrRDQYKHwL7vgJt2YKE4= Date: Wed, 22 Jun 2022 09:05:40 -0700 From: Tyler Retzlaff To: =?utf-8?Q?Stanis=C5=82aw?= Kardach Cc: Ruifeng Wang , David Christensen , dev , upstream@semihalf.com Subject: Re: [PATCH 1/2] config: Use G++ as C++ compiler Message-ID: <20220622160540.GA31911@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20220621122824.187905-1-kda@semihalf.com> <20220621122824.187905-2-kda@semihalf.com> <20220621195341.GE18214@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Wed, Jun 22, 2022 at 07:07:12AM +0200, Stanisław Kardach wrote: > On Tue, Jun 21, 2022 at 9:53 PM Tyler Retzlaff > wrote: > > > > > -cpp = ['ccache', 'arm-linux-gnueabihf-cpp'] > > > +cpp = ['ccache', 'arm-linux-gnueabihf-g++'] > > > > suggest the variable should be 'cxx' not 'cpp' (to be consistent with > > other build systems in the linux world) > The variable name is mandated by meson as it names C++ language "cpp" > in other places: > https://mesonbuild.com/Reference-tables.html#language-arguments-parameter-names unfortunate the meson folks didn't do their research. thanks for clarifying, you can disregard my suggestion then. > -- > Best Regards, > Stanisław Kardach