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 04A54A054F; Tue, 18 Feb 2020 15:26:51 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A413A1C10C; Tue, 18 Feb 2020 15:26:51 +0100 (CET) Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 404151C10B for ; Tue, 18 Feb 2020 15:26:50 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id E2C9C21FA9; Tue, 18 Feb 2020 09:26:49 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Tue, 18 Feb 2020 09:26:49 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=jG5BeeBxJPX4Zi+BxkZU9DRY+WJhh/RUfCTnlbaGQ2w=; b=os7Qnn1t1/ru M7F01+RyPlhfpyMOcIcdJLpekLb5Rsfdvd3AD3IbphWU+uy3DG7hqDc5qOGiq0f4 6Mtw4ftbhRIYjU5N253UUE6sxS1oXTzb05AwKgELUqSC8JLwWHwbMEbtQc9P6Xbc bLl9CpvzRufDNO8Xq6POuLjl4gaoWtA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm2; bh=jG5BeeBxJPX4Zi+BxkZU9DRY+WJhh/RUfCTnlbaGQ 2w=; b=qkRuSzlX9N9vyo6xjpdYzcFFDEA1564/Kquyy+acbdJum4fLShCwbAlPz YCGs6T5FyB3aSJ8xxntwLSM97TQnuKBfxY/IqyjPja4bMVu/kH6zCr+jIwvmBlKP 9kPWef/enwTcVvnxXhybinoMOrnn7LRiSYKeStPAP1BODHqWjER1ZD4HYbDVr9yo czeMCQdBLQTpf+R1ubSpozaxxAoXTT7IPZIX4XLM7Sk7trxJ5htfY0qfg3HVlioC Lhb3l1VIfoMX7oNF+yuAl6DHo1g2sYM0horrb7F1obF/F/jGUiEfmH5QFJvxBQOJ UzN0xmVnYimMtA+NHLEUs7ZHmNgsQ== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedugedrjeekgdeihecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkfgjfhgggfgtsehtufertd dttddvnecuhfhrohhmpefvhhhomhgrshcuofhonhhjrghlohhnuceothhhohhmrghssehm ohhnjhgrlhhonhdrnhgvtheqnecuffhomhgrihhnpehmvghsohhnrdgsuhhilhgunecukf hppeejjedrudefgedrvddtfedrudekgeenucevlhhushhtvghrufhiiigvpedtnecurfgr rhgrmhepmhgrihhlfhhrohhmpehthhhomhgrshesmhhonhhjrghlohhnrdhnvght X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 592C33280063; Tue, 18 Feb 2020 09:26:49 -0500 (EST) From: Thomas Monjalon To: Dmitry Kozlyuk Cc: dev@dpdk.org Date: Tue, 18 Feb 2020 15:26:47 +0100 Message-ID: <3570090.TLkxdtWsSY@xps> In-Reply-To: <20200218000229.86621-5-dmitry.kozliuk@gmail.com> References: <20200218000229.86621-1-dmitry.kozliuk@gmail.com> <20200218000229.86621-5-dmitry.kozliuk@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v3 4/7] build: MinGW-w64 support for Meson 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" 18/02/2020 01:02, Dmitry Kozlyuk: > --- a/config/meson.build > +++ b/config/meson.build > +# MS linker requires special treatment. > +# FIXME: use cc.get_linker_id() with Meson >= 0.54 > +is_ms_linker = is_windows and (cc.get_id() == 'clang') Please could you replace this FIXME with an actual fix in meson.build?