From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 150B715802C for ; Thu, 19 Dec 2024 00:19:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25B7CE07EE; Thu, 19 Dec 2024 00:19:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9640CE07EE for ; Thu, 19 Dec 2024 00:19:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5E50D33DF47 for ; Thu, 19 Dec 2024 00:19:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9A752D81 for ; Thu, 19 Dec 2024 00:19:29 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1734565743.be92e16589bd77497dfa960afd29afdebc85f58c.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/flint/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/flint/flint-3.1.3_p1-r2.ebuild sci-mathematics/flint/flint-3.1.3_p1-r3.ebuild X-VCS-Directories: sci-mathematics/flint/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: be92e16589bd77497dfa960afd29afdebc85f58c X-VCS-Branch: master Date: Thu, 19 Dec 2024 00:19:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b46a0641-d0d2-400d-bbd6-f26044d33b37 X-Archives-Hash: 065ab932dffd8f129c721893399ea962 commit: be92e16589bd77497dfa960afd29afdebc85f58c Author: Michael Orlitzky gentoo org> AuthorDate: Wed Dec 18 23:44:19 2024 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Wed Dec 18 23:49:03 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be92e165 sci-mathematics/flint: pass --disable-assembly to ./configure This is an attempt to fix bug 946501 without the hardware. The undefined symbols are guarded by the preprocessor macro FLINT_HAVE_ADX that is related to the --enable-assembly flag, and the CPU detection is new in -r2 (cmake doesn't do it), so it is a prime suspect. Closes: https://bugs.gentoo.org/946501 Signed-off-by: Michael Orlitzky gentoo.org> .../flint/{flint-3.1.3_p1-r2.ebuild => flint-3.1.3_p1-r3.ebuild} | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sci-mathematics/flint/flint-3.1.3_p1-r2.ebuild b/sci-mathematics/flint/flint-3.1.3_p1-r3.ebuild similarity index 97% rename from sci-mathematics/flint/flint-3.1.3_p1-r2.ebuild rename to sci-mathematics/flint/flint-3.1.3_p1-r3.ebuild index 841de4da69e3..0766a2300847 100644 --- a/sci-mathematics/flint/flint-3.1.3_p1-r2.ebuild +++ b/sci-mathematics/flint/flint-3.1.3_p1-r3.ebuild @@ -70,11 +70,13 @@ src_configure() { # ABI needs to be unset because flint uses it internally for # an incompatible purpose. + # --disable-assembly in an attempt to fix bug 946501 # --enable-debug just adds -g to your CFLAGS # --enable-avx2 and --enable-avx512 just add "-mfoo" to CFLAGS # --enable-gc affects thread-safety local myeconfargs=( ABI="" + --disable-assembly --disable-debug --with-blas --with-gmp