From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH] mk: remove module compilation noise Date: Fri, 23 Sep 2016 01:35:24 +0200 Message-ID: <6873211.QDWnoOkD9j@xps13> References: <1473337981-27378-1-git-send-email-ferruh.yigit@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org To: Ferruh Yigit Return-path: Received: from mail-wm0-f49.google.com (mail-wm0-f49.google.com [74.125.82.49]) by dpdk.org (Postfix) with ESMTP id 9CF665A0A for ; Fri, 23 Sep 2016 01:35:27 +0200 (CEST) Received: by mail-wm0-f49.google.com with SMTP id b130so443603wmc.0 for ; Thu, 22 Sep 2016 16:35:27 -0700 (PDT) In-Reply-To: <1473337981-27378-1-git-send-email-ferruh.yigit@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 2016-09-08 13:33, Ferruh Yigit: > Following log generated by Linux kernel Makefiles: > (cat /dev/null; echo > kernel/.../build/lib/librte_eal/linuxapp/igb_uio/igb_uio.ko;) > > .../build/lib/librte_eal/linuxapp/igb_uio/modules.order > > This happens because $(Q) used for both Linux and DPDK makefiles and > DPDK unsets this variable when V=0, which makes Linux verbose. > > More details: > rte.modules calls kernel makefile with V=0 argument > kernel makefile includes igb_uio/Makefile, which includes rte.vars.mk > rte.vars.mk unsets Q when V=0 Yes good analysis. Another consequence is that V=0 is equivalent to V=1 (verbose mode). I think it is better to fix the latter issue. I'll send a patch.