[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
223/227: gnu: openblas: Add support for older x86 processors.
From: |
guix-commits |
Subject: |
223/227: gnu: openblas: Add support for older x86 processors. |
Date: |
Thu, 11 Nov 2021 12:30:55 -0500 (EST) |
apteryx pushed a commit to branch core-updates-frozen
in repository guix.
commit 9e497f44ba8104b6b4743e72cb041c8e15586a83
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sat Nov 6 01:06:06 2021 -0400
gnu: openblas: Add support for older x86 processors.
Fixes <https://issues.guix.gnu.org/51452>.
* gnu/packages/maths.scm (openblas)[make-flags]: Make the x86_64, i686,
powerpc64le and aarch64 architectures share the same flags; this causes the
DYNAMIC_OLDER=1 to be added for all of them and TARGET=GENERIC to be added
for
the x86_64 and i686 architectures.
---
gnu/packages/maths.scm | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 2f0ef52..45c2810 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -4444,13 +4444,13 @@ parts of it.")
,@(let ((system (or (%current-target-system) (%current-system))))
(cond
((or (string-prefix? "x86_64" system)
- (string-prefix? "i686" system))
- '("DYNAMIC_ARCH=1"))
- ;; On some of these architectures the CPU can't be detected.
- ((or (string-prefix? "powerpc64le" system)
+ (string-prefix? "i686" system)
+ (string-prefix? "powerpc64le" system)
(string-prefix? "aarch64" system))
- '("DYNAMIC_ARCH=1"
- "TARGET=GENERIC"))
+ ;; Dynamic older enables a few extra CPU architectures that
+ ;; were released before 2010.
+ '("DYNAMIC_ARCH=1" "DYNAMIC_OLDER=1" "TARGET=GENERIC"))
+ ;; On some of these architectures the CPU can't be detected.
;; On MIPS we force the "SICORTEX" TARGET, as for the other
;; two available MIPS targets special extended instructions
;; for Loongson cores are used.
- 189/227: gnu: gnome-online-accounts: Update to 3.43.1., (continued)
- 189/227: gnu: gnome-online-accounts: Update to 3.43.1., guix-commits, 2021/11/11
- 182/227: gnu: accountsservice: Use meson 0.59.4 to work around a bug in 0.60.0., guix-commits, 2021/11/11
- 188/227: gnu: Add webkitgtk-with-libsoup2, guix-commits, 2021/11/11
- 186/227: gnu: uhttpmock: Use libsoup 2., guix-commits, 2021/11/11
- 199/227: gnu: libgdata: Use libsoup 2 to fix build., guix-commits, 2021/11/11
- 198/227: gnu: ansible: Update to 4.7.0., guix-commits, 2021/11/11
- 216/227: gnu: gnome-bluetooth: Use meson-0.59., guix-commits, 2021/11/11
- 205/227: gnu: Add python-pypika-tortoise., guix-commits, 2021/11/11
- 210/227: gnu: python-aiomysql: Update to 0.17.8., guix-commits, 2021/11/11
- 221/227: gnu: libgweather: Use libsoup 2., guix-commits, 2021/11/11
- 223/227: gnu: openblas: Add support for older x86 processors.,
guix-commits <=
- 227/227: gnu: kexec-tools: Fix build on i686-linux., guix-commits, 2021/11/11
- 161/227: gnu: mesa: Enable support for OpenGL ES 1.1 and 2.0., guix-commits, 2021/11/11
- 171/227: gnu: gtkmm: Update to 4.4.0., guix-commits, 2021/11/11
- 179/227: gnu: duktape: Install a pkg-config file., guix-commits, 2021/11/11
- 183/227: gnu: geoclue: Fix build option name., guix-commits, 2021/11/11
- 193/227: gnu: Add python-dotenv., guix-commits, 2021/11/11
- 194/227: gnu: python-distro: Update to 1.6.0., guix-commits, 2021/11/11
- 212/227: gnu: python-asynctest: Delete package., guix-commits, 2021/11/11
- 217/227: gnu: hackneyed-x11-cursors: Update to 0.8.2., guix-commits, 2021/11/11
- 224/227: gnu: openblas: Do not build static library., guix-commits, 2021/11/11