From patchwork Thu Feb 6 06:44:19 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dmitry Kozlyuk X-Patchwork-Id: 65607 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 52B19A04FA; Thu, 6 Feb 2020 07:44:41 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 92AD51BFAD; Thu, 6 Feb 2020 07:44:40 +0100 (CET) Received: from mail-lj1-f193.google.com (mail-lj1-f193.google.com [209.85.208.193]) by dpdk.org (Postfix) with ESMTP id F0B6C1BFAA for ; Thu, 6 Feb 2020 07:44:38 +0100 (CET) Received: by mail-lj1-f193.google.com with SMTP id r19so4888577ljg.3 for ; Wed, 05 Feb 2020 22:44:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=+dp9pFwFTegkt/cwIWryNUcElOw3Sh66ugtWhg0UpUo=; b=OJI8n/4A1KDStPpOtHzLDqsQMNiWvBtRaJAWBX1E2g7nqruna7YlHE/UjXjyHg0wwz VvhPEmt+CJXa4gEo1Vgm0JIuMOuJBJ52Sotp5OhFdhaRS+9g/nRMm9yk+x1unqZOSs/8 CLbiZZmUpku740FYluL/l4NCgX+tiS7QN2ADcNtrobB9c3FZ2ecuQ3/q/BH/hJSbbML+ RU3nQCtgMz2Q2MHgh4Ej2OVAS1RIFgcdGod71Rj8PPJ3jgNY3Yta4UU4vPH3wBzklspz daQJbE6dLzqG1FboR+EtD8GXDbL1YV3s20uNrJw7aKOKm/ARZZJOSN7pDlT4LxUAyNMF w3yw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=+dp9pFwFTegkt/cwIWryNUcElOw3Sh66ugtWhg0UpUo=; b=Ge+mJ7okNrbg/ohzVFcdRvDxjn/lWB8Z/Yw4ApGuGq++lvHSMshNkl8nZdkae/gJ54 mdJZ/6UEHMhvMMjUYxDDjGPC90xI/fxCm96LuL/9GYdbIlxJptK2dn7/Ya3jbS2YkDFV ySYGzQ7Ufx/XfvgAO2oN4MLYLwCxpMGX4RrxNQfYglRfd2L8ZMl8ad7rQ4ALV7PWzP1P wXBHJii1jCQ0NUhKurK0OkByLaTLSMXoZ8bkNMfH9zUrgTW8SyIqSgmEdwVnX9JBzB6B UNMrCNGYNk4dyVGxXQDS2rvBSsLBrzZ2QerMcPlsLPO1xEtR35CJSGQOzhdsC3rhZvgM fqhw== X-Gm-Message-State: APjAAAWxKKsMnuNt+qbGO5UG8obaJ5ArLspwvT+KGFiPCcWA/hRaYVjo SLVhiM1aJKdDJiE1SPF4l73uA6qUkk8= X-Google-Smtp-Source: APXvYqzdT9TnL8nljtuStovJbQgCX518oi0jPDkzJMQhbygdWHAyfRqnDtY1nVyLyq/jL5tmh5wm0A== X-Received: by 2002:a2e:9748:: with SMTP id f8mr1088273ljj.178.1580971478155; Wed, 05 Feb 2020 22:44:38 -0800 (PST) Received: from localhost.localdomain (broadband-37-110-65-23.ip.moscow.rt.ru. [37.110.65.23]) by smtp.googlemail.com with ESMTPSA id o19sm939669lji.54.2020.02.05.22.44.37 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 05 Feb 2020 22:44:37 -0800 (PST) From: Dmitry Kozlyuk To: dev@dpdk.org Cc: Dmitry Kozlyuk , Bruce Richardson , Thomas Monjalon , Olivier Matz , Harini Ramakrishnan , Omar Cardona , Pallavi Kadam , Ranjit Menon , John McNamara , Marko Kovacevic Date: Thu, 6 Feb 2020 09:44:19 +0300 Message-Id: <20200206064426.45697-1-dmitry.kozliuk@gmail.com> X-Mailer: git-send-email 2.25.0 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v2 0/7] MinGW-w64 support 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" This patch series add support for building DPDK using MinGW-w64. MinGW-w64 provides GNU toolchain and independent platform SDK on Windows. It also supports cross-compilation to Windows from POSIX systems by providing cross tollchains and libraries [0]. It does NOT emulate a full POSIX environment, like Cygwin or MSYS do. There are advantages in using MinGW-w64 in addition to Clang: 1. Cross-compilation out-of-the-box. MinGW-w64 is provides a pthread implementation, GNU getopt, and Windows platform SDK. 2. Easier porting of POSIX applications using DPDK to Windows, because application code can use the same benefits as mentioned above. 3. Having both primary compilers enabled on Windows provides more diagnostics and generally prevents non-portable code. [0]: http://mingw-w64.org v2 Changes: Add patch to use lowercase system header filenames. Move Meson cross-file for x86 to arch directory. Change wording in comments. Add Meson version warning in documentation. Dmitry Kozlyuk (7): eal: introduce portable format attribute eal: use portable format attribute cmdline: use portable format attribute eal/windows: use lowercase filenames for system headers build: MinGW-w64 support for Meson build: add cross-file for MinGW-w64 doc: guide for Windows build using MinGW-w64 config/meson.build | 14 +++++ config/x86/meson_mingw.txt | 14 +++++ doc/guides/windows_gsg/build_dpdk.rst | 65 ++++++++++++++++++--- lib/librte_cmdline/cmdline.h | 4 +- lib/librte_eal/common/include/rte_common.h | 17 +++++- lib/librte_eal/common/include/rte_debug.h | 2 +- lib/librte_eal/common/include/rte_devargs.h | 2 +- lib/librte_eal/common/include/rte_log.h | 4 +- lib/librte_eal/meson.build | 3 + lib/librte_eal/windows/eal/include/rte_os.h | 4 +- lib/meson.build | 8 ++- 11 files changed, 118 insertions(+), 19 deletions(-) create mode 100644 config/x86/meson_mingw.txt