diff options
author | Stephanos Ioannidis <root@stephanos.io> | 2024-09-24 17:51:37 +0900 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2024-10-06 15:51:13 +1300 |
commit | 246f46c1cb1972b831b7f240a1ea86d4cc68c6c1 (patch) | |
tree | 22e05c2a56ec20cb00952c71cc3e8895edefda7a | |
parent | 9884db4c87366c117c54905b08cd44784b8c3639 (diff) | |
download | crosstool-ng-246f46c1cb1972b831b7f240a1ea86d4cc68c6c1.tar.gz crosstool-ng-246f46c1cb1972b831b7f240a1ea86d4cc68c6c1.tar.bz2 crosstool-ng-246f46c1cb1972b831b7f240a1ea86d4cc68c6c1.zip |
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 <root@stephanos.io>
-rw-r--r-- | scripts/build/cc/gcc.sh | 1 |
1 files changed, 1 insertions, 0 deletions
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 |