]> git.droids-corp.org - dpdk.git/commitdiff
doc: update arm64 cross build of numactl
authorJuraj Linkeš <juraj.linkes@pantheon.tech>
Tue, 25 Jan 2022 13:20:01 +0000 (14:20 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 16 Mar 2022 19:23:21 +0000 (20:23 +0100)
Numactl cross compilation doesn't work with clang, remove it
and fix the GCC cross compiler executable name.

Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
Acked-by: Ruifeng Wang <ruifeng.wang@arm.com>
doc/guides/linux_gsg/cross_build_dpdk_for_arm64.rst

index d6dd6bb307b0694743b0275da47b82a8f9464ece..c84e25b19c522496b8ab368213e1fd58c52d11bb 100644 (file)
@@ -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=<compiler> --prefix=<numa install dir>
+   ./configure --host=aarch64-linux-gnu CC=aarch64-none-linux-gnu-gcc --prefix=<numa install dir>
    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 ``<numa install dir>``.