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 4C01CA0545; Tue, 21 Jun 2022 16:25:31 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 33DAF4069C; Tue, 21 Jun 2022 16:25:31 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 487B640151 for ; Tue, 21 Jun 2022 16:25:30 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655821530; x=1687357530; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=Vpk43qSER5ZhvGKYlGDeCS8leTTnhbl8OC+o6tsBuoc=; b=FObOS054eYxjEVTwcJ4mai6yCq29pM/SAJclD1YcTHbzScTng9ZniEdJ 7v2R8qUsQCVnMjjuiza3Ta5KT9E6aWHDeemmI0wugb4M3oUnndEUqB84q 4NPz0gZOcQIYNlGt5FswD2uoI4nFOdpwEiBbqURsU4rxHLtpeZJ8vYtA3 6yBY5ClHddiJM4PNf2rfzh3VH73oAdGL18uaUfoP7qfizG+v/WpiAwOHF oDLffIFQ6v343v4xkMcp0thgQTh+le4TUJY4h0DvJQ0+912cOkzMpE2RE e44hOAnhbQpw6kP8BXb0tfLkWgZy/nwvznTL7YpMhUnzMP6LXbG+LOAoe Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10384"; a="344122029" X-IronPort-AV: E=Sophos;i="5.92,209,1650956400"; d="scan'208";a="344122029" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Jun 2022 07:25:29 -0700 X-IronPort-AV: E=Sophos;i="5.92,209,1650956400"; d="scan'208";a="643647225" Received: from bricha3-mobl.ger.corp.intel.com ([10.252.10.248]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 21 Jun 2022 07:25:27 -0700 Date: Tue, 21 Jun 2022 15:25:24 +0100 From: Bruce Richardson To: Stanislaw Kardach Cc: Ruifeng Wang , David Christensen , dev@dpdk.org, upstream@semihalf.com Subject: Re: [PATCH 1/2] config: Use G++ as C++ compiler Message-ID: References: <20220621122824.187905-1-kda@semihalf.com> <20220621122824.187905-2-kda@semihalf.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220621122824.187905-2-kda@semihalf.com> 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 Tue, Jun 21, 2022 at 02:28:23PM +0200, Stanislaw Kardach wrote: > Through some mixup all cross-files for PowerPC and ARM platforms were > using C Preprocessor (cpp) instead of GCC (g++). > This caused meson to fail detecting the C++ compiler presence and > therefore disabling some targets (i.e. C++ include file checks). > > Signed-off-by: Stanislaw Kardach Acked-by: Bruce Richardson