From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E7BE7A0553; Mon, 17 Feb 2020 13:33:37 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 91D571DAA3; Mon, 17 Feb 2020 13:33:36 +0100 (CET) Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58]) by dpdk.org (Postfix) with ESMTP id B43011DAA1 for ; Mon, 17 Feb 2020 13:33:35 +0100 (CET) Received: from 2606-a000-111b-43ee-0000-0000-0000-1bf2.inf6.spectrum.com ([2606:a000:111b:43ee::1bf2] helo=localhost) by smtp.tuxdriver.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1j3faY-0003xn-MB; Mon, 17 Feb 2020 07:33:32 -0500 Date: Mon, 17 Feb 2020 07:33:25 -0500 From: Neil Horman To: Victor Huertas Cc: dev@dpdk.org Message-ID: <20200217123325.GB148702@hmswarspite.think-freely.org> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Spam-Score: -2.9 (--) X-Spam-Status: No Subject: Re: [dpdk-dev] Proposal to add a new toolchain for dpdk: g++ X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Mon, Feb 17, 2020 at 11:01:21AM +0100, Victor Huertas wrote: > Hi all, > > I am using DPDK development environment to develop an application from > which I have to access C++ code. > I managed to modify some internal mk files in the dpdk-stable repository to > allow g++ compiler to be supported. > > I have all the modified files well identified and I wonder if the support > team is interested to add this toolchain in future DPDK releases. > > Regards > > -- > Victor > Ostensibly, if you have g++, you have gcc, and theres not much more that needs to be done here. You should just be able to wrap all your application includes in an extern C {} construct, and that should be it. Neil