# prebuilts_lite_sysroot **Repository Path**: ksllh/prebuilts_lite_sysroot ## Basic Information - **Project Name**: prebuilts_lite_sysroot - **Description**: System header files and standard libraries | 系统头文件和标准库 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 111 - **Created**: 2024-10-15 - **Last Updated**: 2024-10-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # sysroot - [Introduction](#section11660541593) - [Directory Structure](#section161941989596) - [Constraints](#section119744591305) - [Compilation and Building](#section137768191623) - [Usage](#section68313135353) - [Repositories Involved](#section1371113476307) ## Introduction **sysroot** is a root directory used by the Clang compiler to search for standard libraries and header files. The libc library is generated from the open-source musl library by compilation. ## Directory Structure ``` /prebuilts/lite/sysroot ├── build # Toolchain building (including build scripts) ├── usr # C library and header files exposed externally │ ├── include # Header files exposed externally │ │ └── arm-liteos # Chip architecture for the toolchain │ └── lib # C library exposed externally │ └── arm-liteos # Chip architecture for the toolchain ``` ## Constraints **sysroot** applies only to the OpenHarmony kernel. ## Compilation and Building When bugs in the musl library are fixed or the version is updated, you need to compile and build a new libc library by executing `make` in the **build** directory, respectively. The new libc library will be stored in the **/prebuilts/lite/sysroot/usr** directory. ## Usage - Add the bin directory to the PATH environment variable. For details about how to set up the compilation environment, see [Quick start](https://gitee.com/openharmony/docs/blob/master/en/device-dev/quick-start/Readme-EN.md). - The following is a sample script for compiling the **helloworld.c** program: ``` clang -o helloworld helloworld.c -target arm-liteos --sysroot=/my_ohos_root_path/prebuilts/lite/sysroot/ ``` ## Repositories Involved [Kernel subsystem](https://gitee.com/openharmony/docs/blob/master/en/readme/kernel.md) [prebuilts\_lite\_sysroot](https://gitee.com/openharmony/prebuilts_lite_sysroot/blob/master/README.md)