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=-3.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no 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 19572C433FF for ; Tue, 13 Aug 2019 09:41:31 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id CF0A0205C9 for ; Tue, 13 Aug 2019 09:41:30 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org CF0A0205C9 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=debian.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2700C1BDAE; Tue, 13 Aug 2019 11:41:30 +0200 (CEST) Received: from mail-wr1-f67.google.com (mail-wr1-f67.google.com [209.85.221.67]) by dpdk.org (Postfix) with ESMTP id C31411B94A for ; Tue, 13 Aug 2019 11:41:28 +0200 (CEST) Received: by mail-wr1-f67.google.com with SMTP id z11so5186904wrt.4 for ; Tue, 13 Aug 2019 02:41:28 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:message-id:subject:from:to:cc:date:in-reply-to :references:content-transfer-encoding:user-agent:mime-version; bh=1O4l+9w92GyYRsDxaY/lm4zqN9Okoo9rpf0Fg9Z0060=; b=LtwSQ3LBS5CHxGADLSfyWhtPdsqeNany9Ht07VDJsT9OKt+N/bYqswKmj8rmvk5JBh 4ZslzhVWbHxKrWkFJR+I6FgMM7YpYNpLAusC/4OVvcBwwzGHEQPlE9cS5195sFddVcSK 2b/IrqH6JpmHiN/4O+fG4U5N2XroU5euVQbrboBTTWkXVS+sd5Y5wV4f4LS3slEN5XS3 T4A8DNi3KTOa+5NgngILlebwSZblCYPdbqgcu+Oin7z1KkYnyX0h/L35phES6XuqLiA5 WKcpFBuqs80EQWtbc7dxQ+QiLKgNYs4SPxCZW5Wh7pcyo4/gwJJsav2hKX49FzGvTHSz QiPw== X-Gm-Message-State: APjAAAX/SbHU0SHq4yuVzgZ+TaT2snl2axbgHIm4uBdAzuIFSl3wIlnM wuVjUfJdq/waSo/6QirVljA= X-Google-Smtp-Source: APXvYqxjSGfhHlszui9Pt9M05t6XGLdAQ9NNiX9F7qpqe/QV2czVQxkTS9ffXWSKhbthA/k6IXbmtw== X-Received: by 2002:a5d:424a:: with SMTP id s10mr15193372wrr.55.1565689288385; Tue, 13 Aug 2019 02:41:28 -0700 (PDT) Received: from localhost ([2a01:4b00:f419:6f00:7a8e:ed70:5c52:ea3]) by smtp.gmail.com with ESMTPSA id l3sm29024161wrb.41.2019.08.13.02.41.27 (version=TLS1_3 cipher=AEAD-AES256-GCM-SHA384 bits=256/256); Tue, 13 Aug 2019 02:41:27 -0700 (PDT) Message-ID: <036be8ed1278920aa57f0fb6351449a5d7d79896.camel@debian.org> From: Luca Boccassi To: Thomas Monjalon , bruce.richardson@intel.com Cc: dev@dpdk.org Date: Tue, 13 Aug 2019 10:41:26 +0100 In-Reply-To: <20190812230358.988-7-thomas@monjalon.net> References: <20190812230358.988-1-thomas@monjalon.net> <20190812230358.988-7-thomas@monjalon.net> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.30.5-1.1 MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 6/6] devtools: load target-specific compilation environment 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" On Tue, 2019-08-13 at 01:03 +0200, Thomas Monjalon wrote: > In order to re-use the same test environment as with > test-build.sh, the configuration file is loaded at each build, > after adjusting the variable DPDK_TARGET. >=20 > This is especially useful to set the variable PKG_CONFIG_PATH, > or define some meson options (without -D) in DPDK_MESON_OPTIONS. >=20 > The DPDK_TARGET values can be > aarch64-*, powerpc64-*, x86_64-*. > The matching DPDK_TARGET values for test-build.sh are > arm64-*, ppc_64-*, x86_64-*. > The advised expressions to use in the common configuration file are: > if echo $DPDK_TARGET | grep -q '^a.*64-' ; then > elif echo $DPDK_TARGET | grep -q '^p.*pc.*64' ; then > elif echo $DPDK_TARGET | grep -q '^x86_64' ; then > fi >=20 > Signed-off-by: Thomas Monjalon < > thomas@monjalon.net > > > --- > devtools/test-meson-builds.sh | 19 ++++++++++++++++++- > 1 file changed, 18 insertions(+), 1 deletion(-) Acked-by: Luca Boccassi --=20 Kind regards, Luca Boccassi