diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2021-06-08 23:43:39 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2021-06-08 23:43:39 +0100 |
commit | bcedb8deeb2e08b91db7b6f5c31623d2a777cb8b (patch) | |
tree | 2fd888e7556496225bb98021593e003e11e7fa66 /crossdev | |
parent | crossdev: make 'crossdev -t help' a single column output (diff) | |
download | crossdev-bcedb8deeb2e08b91db7b6f5c31623d2a777cb8b.tar.gz crossdev-bcedb8deeb2e08b91db7b6f5c31623d2a777cb8b.tar.bz2 crossdev-bcedb8deeb2e08b91db7b6f5c31623d2a777cb8b.zip |
crossdev: mark ia64* targets as targets that always require libc headers
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'crossdev')
-rwxr-xr-x | crossdev | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -254,6 +254,12 @@ parse_target() { STAGE_DEFAULT=${STAGE_C_ONLY} WITH_DEF_HEADERS="no";; + ia64*) + # gcc's libgcc needs glibc headers for unwinder. + # Thus gcc-stage1 can't be built without glibc headers. + WITH_DEF_HEADERS="yes" + ;; + # added in bug #609602 mmix*) KPKG="[none]" |