Skip to content

Commit 2127869

Browse files
authored
[FLINT] Bump to v3.2.1 (#10779)
* [FLINT] Bump to v3.2.1 * Update patch
1 parent db01335 commit 2127869

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

F/FLINT/build_tarballs.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ using BinaryBuilder, Pkg
2525
# coordinated with corresponding changes to Singular_jll.jl, Nemo.jl and polymake_jll.jl
2626
# and possibly other packages.
2727
name = "FLINT"
28-
upstream_version = v"3.2.0"
28+
upstream_version = v"3.2.1"
2929
version_offset = v"0.0.0"
3030
version = VersionNumber(upstream_version.major * 100 + version_offset.major,
3131
upstream_version.minor * 100 + version_offset.minor,
@@ -34,7 +34,7 @@ version = VersionNumber(upstream_version.major * 100 + version_offset.major,
3434
# Collection of sources required to build FLINT
3535
sources = [
3636
ArchiveSource("https://github.com/flintlib/flint/releases/download/v$(upstream_version)/flint-$(upstream_version).tar.gz",
37-
"6d182c4a05d3d6bfc611565d6331d02f94066a3be32df36ed880264afa9c30f4"),
37+
"ca7be46d77972277eb6fe0c4f767548432f56bb534aa17d6dba2d7cce15cd23f"),
3838
DirectorySource("./bundled"),
3939
]
4040

F/FLINT/bundled/patches/Use-__ARM_ACLE-to-guard-inclusion-of-arm_acle.h.patch

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
From efcd23a2ea0e176ac0c0950c656c466791f4f7b7 Mon Sep 17 00:00:00 2001
22
From: =?UTF-8?q?Lars=20G=C3=B6ttgens?= <[email protected]>
33
Date: Thu, 13 Mar 2025 00:56:32 +0100
4-
Subject: [PATCH] Use __ARM_ACLE to guard inclusion of arm_acle.h
4+
Subject: [PATCH] Use __ARM_ACLE to guard inclusion of arm_acle.h (#2264)
55

66
---
77
src/ulong_extras/revbin.c | 2 +-
@@ -16,7 +16,7 @@ index 922a123e9..8698f8e18 100644
1616
#endif
1717

1818
-#if defined(__GNUC__) && FLINT64 && HAVE_RBIT
19-
+#if defined(__GNUC__) && FLINT64 && defined(__ARM_ACLE) && HAVE_RBIT
19+
+#if FLINT64 && __ARM_ACLE && HAVE_RBIT
2020
# include <arm_acle.h>
2121
ulong
2222
n_revbin(ulong n, ulong b)

0 commit comments

Comments
 (0)