summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorfokx2024-04-28 21:17:52 +0800
committerfokx2024-04-28 21:17:52 +0800
commit2c6f77d08890d1372ca8e22756dde4f04d60a7a5 (patch)
tree2e11b45bdceec20806f000c1fc70c4b7a71ab6ed /PKGBUILD
parent25243ce224662c6f7f1fc7224c97855eb684c17a (diff)
downloadaur-python311.tar.gz
fix 'Unknown float word ordering'
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD7
1 files changed, 5 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 4888d17e39f2..62870916f02f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,9 +1,10 @@
+# Maintainer: soh @ AUR
# Maintainer: Tobias Kunze <r@rixx.de>
# Maintained at https://github.com/rixx/pkgbuilds, feel free to submit patches
pkgname=python311
pkgver=3.11.9
-pkgrel=1
+pkgrel=2
_pybasever=3.11
_pymajver=3
pkgdesc="Major release 3.11 of the Python high-level programming language"
@@ -39,7 +40,9 @@ build() {
cd "${srcdir}/Python-${pkgver}"
CFLAGS="${CFLAGS} -fno-semantic-interposition"
- ./configure --prefix=/usr \
+ ./configure \
+ ax_cv_c_float_words_bigendian=no \
+ --prefix=/usr \
--enable-shared \
--with-computed-gotos \
--with-lto \