https://blogs.gentoo.org/ago/2020/07/04/gentoo-tinderbox/ Issue: sci-libs/openlibm-0.8.0 fails to compile. Discovered on: x86 (internal ref: tinderbox_x86) System: GCC-14-SYSTEM (https://wiki.gentoo.org/wiki/Project:Tinderbox/Common_Issues_Helper#GCC-14) Info about the issue: https://wiki.gentoo.org/wiki/Project:Tinderbox/Common_Issues_Helper#CF0014
Created attachment 885603 [details] build.log build log and emerge --info
Error(s) that match a know pattern in addition to what has been reported in the summary: Makefile:26: x86/Make.files: No such file or directory make: *** No rule to make target 'x86/Make.files'. Stop.
tinderbox_x86 has reproduced this issue with version 0.8.3 - Updating summary.
Created attachment 918337 [details, diff] openlibm-x86.patch It's a simple one line fix: --- a/openlibm-0.8.3.ebuild 2025-01-07 12:34:31.474869697 -0600 +++ b/openlibm-0.8.3.ebuild 2025-02-08 18:42:43.491101970 -0600 @@ -33,6 +33,7 @@ src_compile() { case "${ARCH}" in loong) export ARCH=loongarch64 ;; riscv) export ARCH=riscv64 ;; + x86) export ARCH=i387 ;; esac emake \
Hit this today and the one line ebuild patch allowed it to build.
The bug has been closed via the following commit(s): https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fb8269b8533a2606613c4691c69d569b9201783 commit 3fb8269b8533a2606613c4691c69d569b9201783 Author: Sam James <sam@gentoo.org> AuthorDate: 2025-02-23 01:57:07 +0000 Commit: Sam James <sam@gentoo.org> CommitDate: 2025-02-23 01:57:07 +0000 sci-libs/openlibm: fix build on x86 Closes: https://bugs.gentoo.org/925166 Signed-off-by: Sam James <sam@gentoo.org> sci-libs/openlibm/openlibm-0.8.3.ebuild | 1 + 1 file changed, 1 insertion(+)