gnu: julia: Fix make-flags on non-Intel platforms.
* gnu/packages/julia.scm (julia)[arguments]: Add default case in 'match' form.master
parent
f210f057a7
commit
446c7e4de3
|
@ -118,7 +118,10 @@
|
||||||
,(match (or (%current-target-system)
|
,(match (or (%current-target-system)
|
||||||
(%current-system))
|
(%current-system))
|
||||||
("x86_64-linux" "MARCH=x86-64")
|
("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
|
"CONFIG_SHELL=bash" ;needed to build bundled libraries
|
||||||
"USE_SYSTEM_LIBUV=0" ;Julia expects a modified libuv
|
"USE_SYSTEM_LIBUV=0" ;Julia expects a modified libuv
|
||||||
|
|
Reference in New Issue