From 8856674632d352835422a43990f3989404794431 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Juraj=20Linke=C5=A1?= Date: Tue, 25 Jan 2022 14:20:01 +0100 Subject: [PATCH] doc: update arm64 cross build of numactl MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Numactl cross compilation doesn't work with clang, remove it and fix the GCC cross compiler executable name. Signed-off-by: Juraj Linkeš Acked-by: Ruifeng Wang --- doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 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 d6dd6bb307..c84e25b19c 100644 --- a/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst +++ b/doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst @@ -35,13 +35,14 @@ NUMA is required by most modern machines, not needed for non-NUMA architectures. git checkout v2.0.13 -b v2.0.13 ./autogen.sh autoconf -i - ./configure --host=aarch64-linux-gnu CC= --prefix= + ./configure --host=aarch64-linux-gnu CC=aarch64-none-linux-gnu-gcc --prefix= make install .. note:: - The compiler above can be either aarch64-linux-gnu-gcc or clang. - See below for information on how to get specific compilers. + The compiler is ``aarch64-none-linux-gnu-gcc`` if you download GCC + using the below guide. If you're using a different compiler, + make sure you're using the proper executable name. The numa header files and lib file is generated in the include and lib folder respectively under ````. -- 2.39.5