From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 9E478A00E6 for ; Tue, 16 Apr 2019 16:39:04 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 921E81B4DC; Tue, 16 Apr 2019 16:39:04 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 8AF241B4E7 for ; Tue, 16 Apr 2019 16:39:03 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id F02BB3199369; Tue, 16 Apr 2019 14:39:02 +0000 (UTC) Received: from rh.redhat.com (ovpn-117-214.ams2.redhat.com [10.36.117.214]) by smtp.corp.redhat.com (Postfix) with ESMTP id 9DF151001E92; Tue, 16 Apr 2019 14:39:00 +0000 (UTC) From: Kevin Traynor To: Joyce Kong Cc: Stephen Hemminger , Jerin Jacob , dpdk stable Date: Tue, 16 Apr 2019 15:37:09 +0100 Message-Id: <20190416143719.21601-51-ktraynor@redhat.com> In-Reply-To: <20190416143719.21601-1-ktraynor@redhat.com> References: <20190416143719.21601-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.41]); Tue, 16 Apr 2019 14:39:03 +0000 (UTC) Subject: [dpdk-stable] patch 'doc: update cross Arm toolchain in Linux guide' has been queued to LTS release 18.11.2 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Hi, FYI, your patch has been queued to LTS release 18.11.2 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 04/24/19. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Thanks. Kevin Traynor --- >From bf4c8b92ef6c06fd4788ef75871ed804583b79ae Mon Sep 17 00:00:00 2001 From: Joyce Kong Date: Mon, 11 Mar 2019 11:05:14 +0800 Subject: [PATCH] doc: update cross Arm toolchain in Linux guide [ upstream commit c5b72f6827538425c32a2b11742376d2a13bfa1b ] Update cross build tool links as newer cross build tools version are provided on Linaro, and attempts to download the old one give permission denied. Fixes: 01add9da25cd ("doc: add cross compiling guide") Signed-off-by: Joyce Kong Acked-by: Stephen Hemminger Acked-by: Jerin Jacob --- .../linux_gsg/cross_build_dpdk_for_arm64.rst | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst b/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst index 9d1f0fa00..fd7a46c80 100644 --- a/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst +++ b/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst @@ -15,11 +15,11 @@ Obtain the cross tool chain --------------------------- The latest cross compile tool chain can be downloaded from: -https://releases.linaro.org/components/toolchain/binaries/latest/aarch64-linux-gnu/. +https://developer.arm.com/open-source/gnu-toolchain/gnu-a/downloads. -Following is the step to get the version 7.2.1, latest one at the time of this writing. +Following is the step to get the version 8.2, latest one at the time of this writing. .. code-block:: console - wget https://releases.linaro.org/components/toolchain/binaries/latest/aarch64-linux-gnu/gcc-linaro-7.2.1-2017.11-x86_64_aarch64-linux-gnu.tar.xz + wget https://developer.arm.com/-/media/Files/downloads/gnu-a/8.2-2019.01/gcc-arm-8.2-2019.01-x86_64-aarch64-linux-gnu.tar.xz Unzip and add into the PATH @@ -28,10 +28,10 @@ Unzip and add into the PATH .. code-block:: console - tar -xvf gcc-linaro-7.2.1-2017.11-x86_64_aarch64-linux-gnu.tar.xz - export PATH=$PATH:/gcc-linaro-7.2.1-2017.11-x86_64_aarch64-linux-gnu/bin + tar -xvf gcc-arm-8.2-2019.01-x86_64-aarch64-linux-gnu.tar.xz + export PATH=$PATH:/gcc-arm-8.2-2019.01-x86_64-aarch64-linux-gnu/bin .. note:: - For the host requirements and other info, refer to the release note section: https://releases.linaro.org/components/toolchain/binaries/latest/ + For the host requirements and other info, refer to the release note section: https://releases.linaro.org/components/toolchain/binaries/ Getting the prerequisite library @@ -70,6 +70,6 @@ Copy the NUMA header files and lib to the cross compiler's directories: .. code-block:: console - cp /include/numa*.h /gcc-linaro-7.2.1-2017.11-x86_64_aarch64-linux-gnu/bin/../aarch64-linux-gnu/libc/usr/include/ - cp /lib/libnuma.a /gcc-linaro-7.2.1-2017.11-x86_64_aarch64-linux-gnu/lib/gcc/aarch64-linux-gnu/7.2.1/ + cp /include/numa*.h /gcc-arm-8.2-2019.01-x86_64-aarch64-linux-gnu/bin/../aarch64-linux-gnu/libc/usr/include/ + cp /lib/libnuma.a /gcc-arm-8.2-2019.01-x86_64-aarch64-linux-gnu/lib/gcc/aarch64-linux-gnu/8.2/ .. _configure_and_cross_compile_dpdk_build: -- 2.20.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2019-04-16 15:34:27.483041524 +0100 +++ 0051-doc-update-cross-Arm-toolchain-in-Linux-guide.patch 2019-04-16 15:34:25.231178818 +0100 @@ -1,14 +1,15 @@ -From c5b72f6827538425c32a2b11742376d2a13bfa1b Mon Sep 17 00:00:00 2001 +From bf4c8b92ef6c06fd4788ef75871ed804583b79ae Mon Sep 17 00:00:00 2001 From: Joyce Kong Date: Mon, 11 Mar 2019 11:05:14 +0800 Subject: [PATCH] doc: update cross Arm toolchain in Linux guide +[ upstream commit c5b72f6827538425c32a2b11742376d2a13bfa1b ] + Update cross build tool links as newer cross build tools version are provided on Linaro, and attempts to download the old one give permission denied. Fixes: 01add9da25cd ("doc: add cross compiling guide") -Cc: stable@dpdk.org Signed-off-by: Joyce Kong Acked-by: Stephen Hemminger @@ -18,7 +19,7 @@ 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst b/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst -index 270a60674..f19e2edad 100644 +index 9d1f0fa00..fd7a46c80 100644 --- a/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst +++ b/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst @@ -15,11 +15,11 @@ Obtain the cross tool chain