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 DFFCD41E2E; Fri, 10 Mar 2023 21:06:38 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C223C40A8B; Fri, 10 Mar 2023 21:06:38 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id AF8BF40685 for ; Fri, 10 Mar 2023 21:06:36 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id F2F35205765B; Fri, 10 Mar 2023 12:06:35 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com F2F35205765B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1678478795; bh=szs/br1UUpc0N6c5chkFWeHlrXyHNOVlTc80TQ1EnD4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=qc8fkp32Ss7TAunMWkhRuqM1ItJEaxUoamyWbyHiHEY+klDfEeT8l/hRrNdZ3Jyky UUtrPeY2gdE6MBznh58YyuvE/mRw5HJoKMaJChY0yg5DDH3rAoeyzZbdwjulLz/W7I +px0XtanH/tl0DfaSGRvS3kX/RwLkVUKdhq3xAR8= Date: Fri, 10 Mar 2023 12:06:35 -0800 From: Tyler Retzlaff To: David Marchand Cc: dev@dpdk.org, thomas@monjalon.net, Srikanth Yalavarthi Subject: Re: [PATCH] mldev: disable build on Windows Message-ID: <20230310200635.GA11258@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20230310090717.1470032-1-david.marchand@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230310090717.1470032-1-david.marchand@redhat.com> 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 Fri, Mar 10, 2023 at 10:07:17AM +0100, David Marchand wrote: > Caught by UNH lab, Windows compilation is broken because of symbol > exports: > rte_mldev_exports.def : error LNK2001: unresolved external symbol > rte_ml_io_bfloat16_to_float32 > rte_mldev_exports.def : error LNK2001: unresolved external symbol > rte_ml_io_float16_to_float32 > rte_mldev_exports.def : error LNK2001: unresolved external symbol > rte_ml_io_float32_to_bfloat16 > rte_mldev_exports.def : error LNK2001: unresolved external symbol > rte_ml_io_float32_to_float16 > rte_mldev_exports.def : error LNK2001: unresolved external symbol > rte_ml_io_float32_to_int16 > rte_mldev_exports.def : error LNK2001: unresolved external symbol > rte_ml_io_float32_to_int8 > rte_mldev_exports.def : error LNK2001: unresolved external symbol > rte_ml_io_float32_to_uint16 > rte_mldev_exports.def : error LNK2001: unresolved external symbol > rte_ml_io_float32_to_uint8 > rte_mldev_exports.def : error LNK2001: unresolved external symbol > rte_ml_io_int16_to_float32 > rte_mldev_exports.def : error LNK2001: unresolved external symbol > rte_ml_io_int8_to_float32 > rte_mldev_exports.def : error LNK2001: unresolved external symbol > rte_ml_io_uint16_to_float32 > rte_mldev_exports.def : error LNK2001: unresolved external symbol > rte_ml_io_uint8_to_float32 > > Disable Windows build until this is fixed. is someone committed to do this?