mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: openblas: Disable DYNAMIC_ARCH on MIPS.
* gnu/packages/maths.scm (openblas)[arguments]: Do not pass DYNAMIC_ARCH when building for MIPS. Also make non-substitutable for MIPS.
This commit is contained in:
parent
4627ea5877
commit
5b5ea159ac
1 changed files with 9 additions and 2 deletions
|
@ -1037,7 +1037,11 @@ (define-public openblas
|
||||||
"0av3pd96j8rx5i65f652xv9wqfkaqn0w4ma1gvbyz73i6j2hi9db"))))
|
"0av3pd96j8rx5i65f652xv9wqfkaqn0w4ma1gvbyz73i6j2hi9db"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ;no "check" target
|
`(#:tests? #f ;no "check" target
|
||||||
|
;; DYNAMIC_ARCH is not supported on MIPS. When it is disabled,
|
||||||
|
;; OpenBLAS will tune itself to the build host, so we need to disable
|
||||||
|
;; substitutions.
|
||||||
|
#:substitutable? ,(not (string-prefix? "mips" (%current-system)))
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list (string-append "PREFIX=" (assoc-ref %outputs "out"))
|
(list (string-append "PREFIX=" (assoc-ref %outputs "out"))
|
||||||
"SHELL=bash"
|
"SHELL=bash"
|
||||||
|
@ -1045,7 +1049,10 @@ (define-public openblas
|
||||||
;; Build the library for all supported CPUs. This allows
|
;; Build the library for all supported CPUs. This allows
|
||||||
;; switching CPU targets at runtime with the environment variable
|
;; switching CPU targets at runtime with the environment variable
|
||||||
;; OPENBLAS_CORETYPE=<type>, where "type" is a supported CPU type.
|
;; OPENBLAS_CORETYPE=<type>, where "type" is a supported CPU type.
|
||||||
"DYNAMIC_ARCH=1")
|
;; Unfortunately, this is not supported on MIPS.
|
||||||
|
,@(if (string-prefix? "mips" (%current-system))
|
||||||
|
'()
|
||||||
|
'("DYNAMIC_ARCH=1")))
|
||||||
;; no configure script
|
;; no configure script
|
||||||
#:phases (alist-delete 'configure %standard-phases)))
|
#:phases (alist-delete 'configure %standard-phases)))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Reference in a new issue