From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 11A842C27 for ; Fri, 5 May 2017 15:21:57 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 7B10520C73; Fri, 5 May 2017 09:21:56 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Fri, 05 May 2017 09:21:56 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=ErGAr9/c0WiyYWt rFIaVDxiFgJvkBoFnUzXH0UrNWzg=; b=UuCZhQ4lD12pBHhzdXph4ZQEWGCs2Ee I4vbOp0KYEEkibWZmHRmV/rX9mKnF/ZHR/XkovOLcY2wMLdq0nJTu/6F1y5UWr7e VzibU/Kc7rYSPlsLsmskfYiDMnjlRPB+TUbwz+4CZU60jB01W/dVqwMfw9V6Zmrv ivV7Cqz+dYmA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s= fm1; bh=ErGAr9/c0WiyYWtrFIaVDxiFgJvkBoFnUzXH0UrNWzg=; b=XDurHGAw MgIqFq3fcbE/uHoUQ45ysyym0h+YQLiSG7gDDxO2cvcRNjQQvbmzPf9AWpgbClRe +JaAxSfrIA0ajA/A6fXV/lVPpDNbPMhAnZqjLYgDv9Lt/yIW9Nx/8lqUmVxLN4L/ CyW7iPtqPC6THEA1oyFimbeWdcUAeVaJuXQuJWpBWQFsOj7PE9KN5Se7Uk2fMvkX JaTgh4ri++GZ97ZNmAZP7TJBmEaLCQZA8l+aeMtabtn1YsGyncSgKgqpqdql3VUZ 4oU6maotb9mK1blXjgq+owaD93xncUvsZhawtd9RnZGv4KaDFQYZwbTmdarEQgJW yzpdj0zhkjt0Vg== X-ME-Sender: X-Sasl-enc: G/NPNYyVxmLt+a4M24rfjiP+5KWQgLUqzzEb6lLJmoLA 1493990516 Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 3FA97248B2; Fri, 5 May 2017 09:21:56 -0400 (EDT) From: Thomas Monjalon To: Wei Dai Cc: dev@dpdk.org Date: Fri, 05 May 2017 15:21:55 +0200 Message-ID: <2003676.404iG6dgLJ@xps> In-Reply-To: <20170505131827.25599-1-thomas@monjalon.net> References: <1489395568-4664-1-git-send-email-wei.dai@intel.com> <20170505131827.25599-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v3 0/2] add a macro to disable support of backtrace 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: Fri, 05 May 2017 13:21:57 -0000 05/05/2017 15:18, Thomas Monjalon: > Some LIBC implementation like musl doesn't support backtrace() > and backtrace_symbols() declared in execinfo.h. > Currently some DPDK customers fail to build DPDK with musl. > In order to build DPDK with musl, there is a need to > remove references to execinfo.h. > > Add a configuration parameter which defaults to y. > > v3: > - rename option > - apply to BSD > - squash patches > > Wei Dai (2): > examples/performance-thread: remove useless include > config: make backtrace optional I prefer this version ;) Applied, thanks