mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: julia: Add support for aarch64-linux.
* gnu/packages/julia.scm (julia)[arguments]: Add make-flag argument for aarch64-linux. [supported-systems]: Add aarch64-linux.
This commit is contained in:
parent
cdc827b3f3
commit
298fd38b4b
1 changed files with 2 additions and 1 deletions
|
@ -254,6 +254,7 @@ (define-public julia
|
||||||
(%current-system))
|
(%current-system))
|
||||||
("x86_64-linux" "MARCH=x86-64")
|
("x86_64-linux" "MARCH=x86-64")
|
||||||
("i686-linux" "MARCH=pentium4")
|
("i686-linux" "MARCH=pentium4")
|
||||||
|
("aarch64-linux" "MARCH=armv8-a")
|
||||||
;; Prevent errors when querying this package on unsupported
|
;; Prevent errors when querying this package on unsupported
|
||||||
;; platforms, e.g. when running "guix package --search="
|
;; platforms, e.g. when running "guix package --search="
|
||||||
(_ "MARCH=UNSUPPORTED"))
|
(_ "MARCH=UNSUPPORTED"))
|
||||||
|
@ -365,7 +366,7 @@ (define-public julia
|
||||||
"13zfannnr6sa6s27ggvcvzmh133ndi38pfyxsssvjmw2s8ac9pv8"))))))
|
"13zfannnr6sa6s27ggvcvzmh133ndi38pfyxsssvjmw2s8ac9pv8"))))))
|
||||||
;; Julia is not officially released for ARM and MIPS.
|
;; Julia is not officially released for ARM and MIPS.
|
||||||
;; See https://github.com/JuliaLang/julia/issues/10639
|
;; See https://github.com/JuliaLang/julia/issues/10639
|
||||||
(supported-systems '("i686-linux" "x86_64-linux"))
|
(supported-systems '("i686-linux" "x86_64-linux" "aarch64-linux"))
|
||||||
(home-page "http://julialang.org/")
|
(home-page "http://julialang.org/")
|
||||||
(synopsis "High-performance dynamic language for technical computing")
|
(synopsis "High-performance dynamic language for technical computing")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue