From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 53AB95F21 for ; Thu, 1 Nov 2018 11:47:26 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id C509522456; Thu, 1 Nov 2018 06:47:25 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Thu, 01 Nov 2018 06:47:25 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding:content-type; s=mesmtp; bh=ezQukaxphC Zyzp/vkUvUaInzw0Js5ss48gzdY9wopGc=; b=je07OXyR83L26HzQNFNEjJkgIT eXrrr7voAEq59zuhGHsW67SrYxuAT7JUA5d4D9LHk9WbofxTXRAaIx8SryI/bRZm J7ccSXtDIHRBMgNzm+DIFke0H3C0YKTDcbPP4rmPNOIyLg1zIb9p/IAAjm5jwLea uYruLIYQ5u+P45iWg= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:message-id:mime-version:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=ezQuka xphCZyzp/vkUvUaInzw0Js5ss48gzdY9wopGc=; b=qy/GBePKOVoO0n0y+glpKc 9lf+rRdyXnmOWsQDPfer062q0YLVLvjW2qrapgYUSbwNKCN2GY3BUkwjkO3iS61o dH1sZQBHE5QKp2zIkdOXHyJFx03k5hPh48ahMZ+9y1fm99xEytTJgbnbH63hCNeb cAEbwwL/TmO7yKrzbM/9HFTIKeGuTlLvcF0Di+FRKiT3/cvMjbyIkD46Ax8HAkjw plOHGxkwt1ZvdKG7/sYDTkaCqFX8HPu9foTDZKfcpkbGMd6EPnmme4mlzf9L7moy uIFPuWCHFH/JyW3hURdILlxIHzhnLagiZGwIRVRkFLh2Uut1W8mESXs29z81D3Ng == X-ME-Sender: X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 7D24C103AB; Thu, 1 Nov 2018 06:47:24 -0400 (EDT) From: Thomas Monjalon To: david.hunt@intel.com Cc: dev@dpdk.org Date: Thu, 01 Nov 2018 11:47:23 +0100 Message-ID: <8756945.B50ulyzTOh@xps> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: [dpdk-dev] JSON compilation in examples/vm_power_manager 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: , X-List-Received-Date: Thu, 01 Nov 2018 10:47:26 -0000 Hi Dave, In examples/vm_power_manager/Makefile, jansson lib availability is detected with pkg-config --exists. As we have seen for telemetry lib, we can detect jansson for the wrong arch and enable it no matter the arch being compiled. The solution was to disable it in Makefile and use meson for reliable dependency detection. Would you like to do the same for this app?