guix: m2-planet: Update to 1.10.0-0.754c5de.
For 64bit platforms, this fix is essential 85dd953 Add padding when loading global ints on 64-bit arches. * guix/git/mes.scm (m2-planet): Update to latest git.
This commit is contained in:
parent
f32b5f5510
commit
516b5849f2
|
@ -86,38 +86,41 @@ get_machine.")
|
||||||
(license gpl3+)))
|
(license gpl3+)))
|
||||||
|
|
||||||
(define-public m2-planet
|
(define-public m2-planet
|
||||||
(package
|
(let ((version "1.10.0")
|
||||||
(name "m2-planet")
|
(revision "0")
|
||||||
(version "1.10.0")
|
(commit "754c5de7d9ba980b98f3213d1f446cf59166dc16"))
|
||||||
(source (origin
|
(package
|
||||||
(method git-fetch)
|
(name "m2-planet")
|
||||||
(uri (git-reference
|
(version (git-version version revision commit))
|
||||||
(url "https://github.com/oriansj/m2-planet")
|
(source (origin
|
||||||
(commit (string-append "Release_" version))
|
(method git-fetch)
|
||||||
(recursive? #t))) ;for M2libc
|
(uri (git-reference
|
||||||
(file-name (git-file-name name version))
|
(url "https://github.com/oriansj/m2-planet")
|
||||||
(sha256
|
(commit commit)
|
||||||
(base32
|
(recursive? #t))) ;for M2libc
|
||||||
"03ixvfdzhyy1d94iqpwl0p924pdvdp7yq4ggm05w3c013kzy2y12"))))
|
(file-name (git-file-name name version))
|
||||||
(native-inputs (list mescc-tools))
|
(sha256
|
||||||
(build-system gnu-build-system)
|
(base32
|
||||||
(supported-systems '("i686-linux" "x86_64-linux"
|
"15hjnq7rimspbjddi8fnx1azcyajbnbv404zbgim8aq42k498fnp"))))
|
||||||
"armhf-linux" "aarch64-linux"
|
(native-inputs (list mescc-tools))
|
||||||
"riscv32-linux" "riscv64-linux"))
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(supported-systems '("i686-linux" "x86_64-linux"
|
||||||
`(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
|
"armhf-linux" "aarch64-linux"
|
||||||
(string-append "CC=" ,(cc-for-target)))
|
"riscv32-linux" "riscv64-linux"))
|
||||||
#:tests? #f
|
(arguments
|
||||||
#:phases (modify-phases %standard-phases
|
`(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
|
||||||
(delete 'bootstrap)
|
(string-append "CC=" ,(cc-for-target)))
|
||||||
(delete 'configure))))
|
#:tests? #f
|
||||||
(synopsis "The PLAtform NEutral Transpiler")
|
#:phases (modify-phases %standard-phases
|
||||||
(description
|
(delete 'bootstrap)
|
||||||
"M2-Planet, The PLAtform NEutral Transpiler, when combined with
|
(delete 'configure))))
|
||||||
|
(synopsis "The PLAtform NEutral Transpiler")
|
||||||
|
(description
|
||||||
|
"M2-Planet, The PLAtform NEutral Transpiler, when combined with
|
||||||
mescc-tools compiles a subset of the C language into working binaries
|
mescc-tools compiles a subset of the C language into working binaries
|
||||||
with introspective steps inbetween.")
|
with introspective steps inbetween.")
|
||||||
(home-page "https://github.com/oriansj/m2-planet")
|
(home-page "https://github.com/oriansj/m2-planet")
|
||||||
(license gpl3+)))
|
(license gpl3+))))
|
||||||
|
|
||||||
(define-public nyacc-0.99
|
(define-public nyacc-0.99
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue