[libc-commits] [libc] 85711bd - [libc][docs] update docs on how to build linux kernel headers from src (#122381)

via libc-commits libc-commits at lists.llvm.org
Fri Jan 10 14:41:02 PST 2025


Author: Nick Desaulniers
Date: 2025-01-10T14:40:57-08:00
New Revision: 85711bdda31a34a16c6458b0e824a3dd5f753929

URL: https://github.com/llvm/llvm-project/commit/85711bdda31a34a16c6458b0e824a3dd5f753929
DIFF: https://github.com/llvm/llvm-project/commit/85711bdda31a34a16c6458b0e824a3dd5f753929.diff

LOG: [libc][docs] update docs on how to build linux kernel headers from src (#122381)

It's simpler than the directions we have; which are very very Debian specific.

Added: 
    

Modified: 
    libc/docs/full_host_build.rst

Removed: 
    


################################################################################
diff  --git a/libc/docs/full_host_build.rst b/libc/docs/full_host_build.rst
index e25079141f47b2..12aacf181695a9 100644
--- a/libc/docs/full_host_build.rst
+++ b/libc/docs/full_host_build.rst
@@ -175,17 +175,15 @@ Linux Headers
 =============
 
 If you are using the full libc on Linux, then you will also need to install
-Linux headers in your sysroot.  The way to do this varies per system.
-
-These instructions should work on a Debian-based x86_64 system:
+Linux headers in your sysroot.  Let's build them from source.
 
 .. code-block:: sh
 
-   $> apt download linux-libc-dev
-   $> dpkg -x linux-libc-dev*deb .
-   $> cp -r usr/* /path/to/sysroot/
-   $> rm -r usr linux-libc-dev*deb
-   $> ln -s /path/to/sysroot/include/x86_64-linux-gnu/asm /path/to/sysroot/include/asm
+   $> git clone --depth=1 git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git /tmp/linux
+   $> make LLVM=1 INSTALL_HDR_PATH=/path/to/sysroot -C /tmp/linux headers_install
+
+The headers can be built to target non-host architectures by adding the
+``ARCH={arm|arm64|i386}`` to the above invocation of ``make``.
 
 Using your newly built libc
 ===========================


        


More information about the libc-commits mailing list