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 905CF463ED; Wed, 12 Mar 2025 15:22:19 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1C9C3402CE; Wed, 12 Mar 2025 15:22:19 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id D04F940265 for ; Wed, 12 Mar 2025 15:22:17 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id DA3AD2033431; Wed, 12 Mar 2025 07:22:16 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com DA3AD2033431 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1741789336; bh=7kpacDgpUDYhq6i4PdHeCk/svh9jImFjl1e+o4qoodw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=I/qm7lp9OPIYMkhJRWJcEGgjEab9/7CW7z5HqmKzXndsQH11KdxguuhzL0xN+7rgY tFotsGsMwBq/nWQ1IlVmdJPsWxuPgLqnkFd4dOoeRQBhLuWUs+O1D5U3rDzY5DhPaG /FNtymyxkxMrHA+7jwTP+B1OQnh1TTlYQjp1du3o= Date: Wed, 12 Mar 2025 07:22:16 -0700 From: Andre Muezerie To: David Marchand Cc: Ian Stokes , Bruce Richardson , Vladimir Medvedkin , Anatoly Burakov , dev@dpdk.org Subject: Re: [PATCH] drivers: remove invalid options for MSVC Message-ID: <20250312142216.GA12838@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <1741745636-20165-1-git-send-email-andremue@linux.microsoft.com> 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, Mar 12, 2025 at 08:51:12AM +0100, David Marchand wrote: > On Wed, Mar 12, 2025 at 3:14 AM Andre Muezerie > wrote: > > > > When compiling "drivers" directory with MSVC the errors below popped up: > > > > 1) > > LINK : warning LNK4044: unrecognized option > > '/Wl,/def:V:\github\dpdk\build\drivers\rte_bus_vdev_exports.def'; ignored > > I reworked passing the export map in my RFC series. That's right. I'll remove this part then. > > > > > 2) > > cl : Command line warning D9002 : ignoring unknown > > option '-fno-asynchronous-unwind-tables' > > This part lgtm. > > > > > The fix is to remove the unnecessary/invalid option when using MSVC. > > > > Signed-off-by: Andre Muezerie > > > -- > David Marchand