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 4F09CA00C4; Thu, 4 Jun 2020 20:05:28 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7E4F81D5D8; Thu, 4 Jun 2020 20:05:27 +0200 (CEST) Received: from mail-pj1-f51.google.com (mail-pj1-f51.google.com [209.85.216.51]) by dpdk.org (Postfix) with ESMTP id B05741D5CE for ; Thu, 4 Jun 2020 20:05:26 +0200 (CEST) Received: by mail-pj1-f51.google.com with SMTP id jz3so1458824pjb.0 for ; Thu, 04 Jun 2020 11:05:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:subject:message-id:mime-version :content-transfer-encoding; bh=GxXvJ4ybFaNdRtkTD6NK9rqw4ntmiCeynP57YYoXxx8=; b=v+yCYHnn3qBKo1527oBNEXM3OanzlYKuTgwxXeIX0JABXJwJf77iDaHS/xQ+1FcEn9 /2QGjz18L3+Nccqqo4Td6GmShw+zbXBg/YVO74MFogzPymrHK/Nn0bwu3IiWWqyXdSyk /RWlWEklsoYiV8pHxx2RojBwjHrSfxT6WBDEInrYJO/dVxBnlc+3pESSMK7czv2qGiWw B7t8MBW7KO0PLTFQKJs/vjsA+QlwG/xvyl9jG2G+1lWJ7tfCZfo8betvwFTfrLdKouUm GbEVswvY9pKQZhrs1Xor7xNJLUix+yY154Ut4ElwdVuap5oCJ0KPZPIhvb1EF/h/Hhks bK3w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-transfer-encoding; bh=GxXvJ4ybFaNdRtkTD6NK9rqw4ntmiCeynP57YYoXxx8=; b=IYohyuV3rF/OaqcPrC+9lm5CeBlu02wNRoiabFaqMcPYIE6CFJbt3rvemLgDKCgIbU Q8V/hwcBa5w+pZ6/yVUZ5XtFhbg4uB0uWn3+6n6eRwCXva2ZWuBGqc5pcIPRcKaGFDqO Nbti4nqhZZUR7zl2ARPiPMaylQ98aErKjy3J6h55qkFIuRA8Dz3/gMRmYGurVkhL94u8 3RhKxe8PPmbnV7Fy00jcptqr5O3+mE4LyXjTUxDlR1jp8TU7VA47mLi5mAJ8KxbcFGzT LDhM6fXTajAVsW89aPmA4kTOneZx9kOhW65cUd04ZFCpGr2TbGGNcFiL9wtZg5/UOdSb PKeg== X-Gm-Message-State: AOAM531Qq+ilXsDtrnlzyiWDQTUuyqXlxepeTU82smL3rmd8uovRNzWF 2LlWUWpmaAnR2NRZlcouZXTxbNSfn7g= X-Google-Smtp-Source: ABdhPJwIi8IQy8ScFwxteacHzQvQql5nx/c8rUVP6ykI34RpX9hKQhgcReW/f2ROQOZJTUs4BMXg7Q== X-Received: by 2002:a17:90a:d0c1:: with SMTP id y1mr7252635pjw.164.1591293925365; Thu, 04 Jun 2020 11:05:25 -0700 (PDT) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id m12sm5835936pjf.44.2020.06.04.11.05.24 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 04 Jun 2020 11:05:25 -0700 (PDT) Date: Thu, 4 Jun 2020 11:05:16 -0700 From: Stephen Hemminger To: dev@dpdk.org Message-ID: <20200604110516.66c777d4@hermes.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: [dpdk-dev] Build system in coding_style 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" Noticed this in coding_style.rst, it should be changed. The make build will be deprecated. Integrating with the Build System --------------------------------- DPDK supports being built in two different ways: * using ``make`` - or more specifically "GNU make", i.e. ``gmake`` on FreeBSD * using the tools ``meson`` and ``ninja`` Any new library or driver to be integrated into DPDK should support being built with both systems. While building using ``make`` is a legacy approach, and most build-system enhancements are being done using ``meson`` and ``ninja`` there are no plans at this time to deprecate the legacy ``make`` build system