diff options
author | 2025-01-02 23:30:56 +0000 | |
---|---|---|
committer | 2025-01-02 23:31:57 +0000 | |
commit | 3fa625c5967246ee3ffd59393b26379af4c91e8c (patch) | |
tree | 0570afd8764d1971f0a1defeca6b485524190633 /eclass | |
parent | dev-embedded/avr-libc: add github upstream metadata (diff) | |
download | gentoo-3fa625c5967246ee3ffd59393b26379af4c91e8c.tar.gz gentoo-3fa625c5967246ee3ffd59393b26379af4c91e8c.tar.bz2 gentoo-3fa625c5967246ee3ffd59393b26379af4c91e8c.zip |
toolchain.eclass: run fixincludes for x86_64-w32-mingw32 too
This came up in a PR to add CI for mingw targets to crossdev,
specifically https://github.com/gentoo/crossdev/actions/runs/12337160095/job/34430532180?pr=29.
Bug: https://bugs.gentoo.org/925204
Bug: https://bugs.gentoo.org/946397
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index acc51ead74cc..244de97076e4 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1804,7 +1804,7 @@ toolchain_src_configure() { fi case ${CBUILD}-${CHOST}-${CTARGET} in - *i686-w64-mingw32*|*x86_64-w64-mingw32*) + *i686-w64-mingw32*|*x86_64-w64-mingw32*|*x86_64-w32-mingw32*) # config/i386/t-cygming requires fixincludes (bug #925204) GCC_RUN_FIXINCLUDES=1 ;; |