[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] Add Julia.
From: |
Ricardo Wurmus |
Subject: |
Re: [PATCH] Add Julia. |
Date: |
Wed, 25 Mar 2015 19:24:14 +0100 |
Mark H Weaver writes:
> Ricardo Wurmus <address@hidden> writes:
>
>> May I suggest adding passing the "DYNAMIC_ARCH=1" flag in openblas
>> instead of propagating non-substitutability to Julia? When built with
>> "DYNAMIC_ARCH=1" the CPU type can be picked with the environment
>> variable OPENBLAS_CORETYPE=<type>. If I'm not mistaken this makes
>> substitutions for openblas possible.
>>
>> What do you think?
>
> Yes, we should do this.
Attached is a patch to make openblas substitutable.
>From 326fa66415fe8e9ed2b28a249b903f4a654b769e Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <address@hidden>
Date: Wed, 25 Mar 2015 19:20:11 +0100
Subject: [PATCH] gnu: openblas: build for all supported CPUs.
* gnu/packages/maths.scm (openblas)[arguments]: Pass make flag
"DYNAMIC_ARCH=1" to build library for all CPUs, making it substitutable.
---
gnu/packages/maths.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 49667cc..57c1e9f 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1033,10 +1033,10 @@ constant parts of it.")
(build-system gnu-build-system)
(arguments
'(#:tests? #f ;no "check" target
- #:substitutable? #f ;force local build because of CPU detection
#:make-flags
(list (string-append "PREFIX=" (assoc-ref %outputs "out"))
"SHELL=bash"
+ "DYNAMIC_ARCH=1"
"NO_LAPACK=1")
;; no configure script
#:phases (alist-delete 'configure %standard-phases)))
--
2.1.0
- [PATCH] Add Julia., Ricardo Wurmus, 2015/03/20
- Re: [PATCH] Add Julia., Ludovic Courtès, 2015/03/23
- Re: [PATCH] Add Julia., Mark H Weaver, 2015/03/23
- Re: [PATCH] Add Julia., Mark H Weaver, 2015/03/24
- Re: [PATCH] Add Julia., Mark H Weaver, 2015/03/26
- Re: [PATCH] Add Julia., Ludovic Courtès, 2015/03/26
- Re: [PATCH] Add Julia., Ricardo Wurmus, 2015/03/26
- Re: [PATCH] Add Julia., Ludovic Courtès, 2015/03/29