mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: julia: Fix make-flags on non-Intel platforms.
* gnu/packages/julia.scm (julia)[arguments]: Add default case in 'match' form.
This commit is contained in:
parent
f210f057a7
commit
446c7e4de3
1 changed files with 4 additions and 1 deletions
|
@ -118,7 +118,10 @@
|
|||
,(match (or (%current-target-system)
|
||||
(%current-system))
|
||||
("x86_64-linux" "MARCH=x86-64")
|
||||
("i686-linux" "MARCH=pentium4"))
|
||||
("i686-linux" "MARCH=pentium4")
|
||||
;; Prevent errors when querying this package on unsupported
|
||||
;; platforms, e.g. when running "guix package --search="
|
||||
(_ "MARCH=UNSUPPORTED"))
|
||||
|
||||
"CONFIG_SHELL=bash" ;needed to build bundled libraries
|
||||
"USE_SYSTEM_LIBUV=0" ;Julia expects a modified libuv
|
||||
|
|
Loading…
Reference in a new issue