From 246f46c1cb1972b831b7f240a1ea86d4cc68c6c1 Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Tue, 24 Sep 2024 17:51:37 +0900 Subject: gcc: Specify '--with-headers' when building final gcc The final gcc build process was relying on `CT_CC_SYSROOT_ARG` to provide the `--with-headers` argument pointing to the libc header directory. Since `CT_CC_SYSROOT_ARG` no longer provides `--with-headers`, this adds one directly to the final gcc build invocation. Without this, gcc build system will not copy all the required libc headers into the `sys-include` directory. Signed-off-by: Stephanos Ioannidis --- scripts/build/cc/gcc.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/build/cc/gcc.sh b/scripts/build/cc/gcc.sh index afcbeb2b..6cf7e51f 100644 --- a/scripts/build/cc/gcc.sh +++ b/scripts/build/cc/gcc.sh @@ -282,6 +282,7 @@ do_gcc_core_backend() { gcc_build|gcc_host) CT_DoLog EXTRA "Configuring final gcc compiler" extra_config+=( "${CT_CC_SYSROOT_ARG[@]}" ) + extra_config+=( "--with-headers=${CT_PREFIX_DIR}/${CT_TARGET}/include" ) extra_user_config=( "${CT_CC_GCC_EXTRA_CONFIG_ARRAY[@]}" ) log_txt="final gcc compiler" # to inhibit the libiberty and libgcc tricks later on -- cgit v1.2.3