From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-11.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4090CC433E0 for ; Thu, 25 Feb 2021 15:29:16 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 6CADB64F18 for ; Thu, 25 Feb 2021 15:29:15 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 6CADB64F18 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6BEEC1607D0; Thu, 25 Feb 2021 16:29:14 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 0CACF40692 for ; Thu, 25 Feb 2021 16:29:12 +0100 (CET) IronPort-SDR: GJ/kW0+0T7dXxfi21CrF0pOPdFHJbNZ7g3gV3lnawwGTy8CHOEV8/i8XuYLOL+DsK50QbMEomg 78iJjBPShaDg== X-IronPort-AV: E=McAfee;i="6000,8403,9905"; a="249617626" X-IronPort-AV: E=Sophos;i="5.81,206,1610438400"; d="scan'208";a="249617626" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Feb 2021 07:29:11 -0800 IronPort-SDR: EiPPSijGacz4ywIF/etMF+GyCkcfhVQYrXaIzqieadWRXf1esJEZ5CA5/UkeOnI/N43r6xs5h0 YrAkFAVmqdWg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.81,206,1610438400"; d="scan'208";a="367432345" Received: from silpixa00399126.ir.intel.com ([10.237.223.204]) by orsmga006.jf.intel.com with ESMTP; 25 Feb 2021 07:29:10 -0800 From: Bruce Richardson To: dev@dpdk.org Cc: thomas@monjalon.net, david.marchand@redhat.com, Bruce Richardson Date: Thu, 25 Feb 2021 15:29:00 +0000 Message-Id: <20210225152903.148347-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH 0/3] Add developer mode to DPDK build 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 Sender: "dev" To allow more flexibility in enabling additional build checks to DPDK build process, we can add a developer mode option to the build. With this option enabled, extra checks of interest to DPDK developers rather than users can be done on the code, without having to worry about possible user impacts. The new option can be manually enabled or disabled by using meson configure, but by default is set to "auto" which means it is enabled if building from a git repo. Once the developer mode is added in the first patch, the other patches of this series turn off a number of previous features for non-developer builds, since those features would only be of interest to DPDK devs. Bruce Richardson (3): build: enable a developer mode setting build: hide debug messages in non-developer mode build: limit symbol checks to developer mode doc/guides/contributing/coding_style.rst | 8 ++++++++ drivers/meson.build | 26 ++++++++++++++---------- lib/meson.build | 12 ++++++----- meson.build | 14 +++++++++++++ meson_options.txt | 2 ++ 5 files changed, 46 insertions(+), 16 deletions(-) -- 2.27.0