* bug#72669: gcc-toolchain environment variables
@ 2024-08-16 9:02 creightor via Bug reports for GNU Guix
0 siblings, 0 replies; only message in thread
From: creightor via Bug reports for GNU Guix @ 2024-08-16 9:02 UTC (permalink / raw)
To: 72669
Hi, it looks like having the C_INCLUDE_PATH and CPLUS_INCLUDE_PATH
environment variables set by the gcc-toolchain package in a profile can
cause issues.
For example, I have gcc-toolchain installed, compiled a cross-binutils
for aarch64-elf and then tried to compile a gcc cross-compiler for the
same target using those binutils.
These are the flags I used for binutils:
--target=aarch64-none-elf --disable-multilib
and for the gcc cross-compiler:
--target=aarch64-none-elf --disable-multilib --disable-bootstrap
--enable-languages=c,c++ --without-headers --with-newlib
--disable-hosted-libstdcxx --disable-libssp --disable-libsanitizer
From what I understand, there should be no headers available when
creating a cross-compiler for a freestanding platform like this.
Since these include paths were added with C_INCLUDE_PATH and
CPLUS_INCLUDE_PATH, something like `#if __has_include(<sys/auxv.h>)` in
gcc's libgcc/config/aarch64/cpuinfo.c evaluated to true and the rest of
the build would fail.
Unsetting them didn't work since apparently gcc-toolchain relies on them
set so I had these two variables unset in BASE_TARGET_EXPORTS in gcc's
root Makefile.in which should only apply to the newly built gcc
cross-compiler and so the build finished fine.
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-08-16 15:17 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-16 9:02 bug#72669: gcc-toolchain environment variables creightor via Bug reports for GNU Guix
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).