patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [PATCH v1] doc: update cross build tool links
@ 2019-03-11  3:05 Joyce Kong
  2019-03-11 18:14 ` [dpdk-stable] [dpdk-dev] " Stephen Hemminger
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Joyce Kong @ 2019-03-11  3:05 UTC (permalink / raw)
  To: dev; +Cc: nd, thomas, honnappa.nagarahalli, gavin.hu, stable

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 <joyce.kong@arm.com>
---
 doc/guides/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 9d1f0fa..fd7a46c 100644
--- a/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst
+++ b/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst
@@ -14,25 +14,25 @@ This chapter describes how to cross compile DPDK for ARM64 from x86 build hosts.
 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
 ---------------------------
 
 .. code-block:: console
 
-   tar -xvf gcc-linaro-7.2.1-2017.11-x86_64_aarch64-linux-gnu.tar.xz
-   export PATH=$PATH:<cross_install_dir>/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:<cross_install_dir>/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
 --------------------------------
@@ -69,8 +69,8 @@ Copy the NUMA header files and lib to the cross compiler's directories:
 
 .. code-block:: console
 
-   cp <numa_install_dir>/include/numa*.h <cross_install_dir>/gcc-linaro-7.2.1-2017.11-x86_64_aarch64-linux-gnu/bin/../aarch64-linux-gnu/libc/usr/include/
-   cp <numa_install_dir>/lib/libnuma.a <cross_install_dir>/gcc-linaro-7.2.1-2017.11-x86_64_aarch64-linux-gnu/lib/gcc/aarch64-linux-gnu/7.2.1/
+   cp <numa_install_dir>/include/numa*.h <cross_install_dir>/gcc-arm-8.2-2019.01-x86_64-aarch64-linux-gnu/bin/../aarch64-linux-gnu/libc/usr/include/
+   cp <numa_install_dir>/lib/libnuma.a <cross_install_dir>/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.7.4

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dpdk-stable] [dpdk-dev] [PATCH v1] doc: update cross build tool links
  2019-03-11  3:05 [dpdk-stable] [PATCH v1] doc: update cross build tool links Joyce Kong
@ 2019-03-11 18:14 ` Stephen Hemminger
  2019-03-17 15:14 ` Jerin Jacob Kollanukkaran
  2019-03-26 23:29 ` Thomas Monjalon
  2 siblings, 0 replies; 4+ messages in thread
From: Stephen Hemminger @ 2019-03-11 18:14 UTC (permalink / raw)
  To: Joyce Kong; +Cc: dev, nd, thomas, honnappa.nagarahalli, gavin.hu, stable

On Mon, 11 Mar 2019 11:05:14 +0800
Joyce Kong <joyce.kong@arm.com> wrote:

> 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 <joyce.kong@arm.com>

Acked-by: Stephen Hemminger <sthemmin@microsoft.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dpdk-stable] [dpdk-dev] [PATCH v1] doc: update cross build tool links
  2019-03-11  3:05 [dpdk-stable] [PATCH v1] doc: update cross build tool links Joyce Kong
  2019-03-11 18:14 ` [dpdk-stable] [dpdk-dev] " Stephen Hemminger
@ 2019-03-17 15:14 ` Jerin Jacob Kollanukkaran
  2019-03-26 23:29 ` Thomas Monjalon
  2 siblings, 0 replies; 4+ messages in thread
From: Jerin Jacob Kollanukkaran @ 2019-03-17 15:14 UTC (permalink / raw)
  To: dev, joyce.kong; +Cc: honnappa.nagarahalli, thomas, gavin.hu, nd, stable

On Mon, 2019-03-11 at 11:05 +0800, Joyce Kong wrote:
> 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 <joyce.kong@arm.com>

Acked-by: Jerin Jacob <jerinj@marvell.com>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dpdk-stable] [dpdk-dev] [PATCH v1] doc: update cross build tool links
  2019-03-11  3:05 [dpdk-stable] [PATCH v1] doc: update cross build tool links Joyce Kong
  2019-03-11 18:14 ` [dpdk-stable] [dpdk-dev] " Stephen Hemminger
  2019-03-17 15:14 ` Jerin Jacob Kollanukkaran
@ 2019-03-26 23:29 ` Thomas Monjalon
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2019-03-26 23:29 UTC (permalink / raw)
  To: Joyce Kong; +Cc: dev, nd, honnappa.nagarahalli, gavin.hu, stable

11/03/2019 04:05, Joyce Kong:
> 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 <joyce.kong@arm.com>

Applied, thanks




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-03-26 23:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-11  3:05 [dpdk-stable] [PATCH v1] doc: update cross build tool links Joyce Kong
2019-03-11 18:14 ` [dpdk-stable] [dpdk-dev] " Stephen Hemminger
2019-03-17 15:14 ` Jerin Jacob Kollanukkaran
2019-03-26 23:29 ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).