mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-05-23 09:35:56 +02:00
gnu: Add mpfr-boot1.
* gnu/packages/commencement.scm (mpfr-boot1): New variable. Change-Id: Ibae291199d0a3c4307026be906754bda552fc667
This commit is contained in:
committed by
Janneke Nieuwenhuizen
parent
81a02aefcc
commit
1ea57ea17d
@@ -2551,6 +2551,34 @@ exec " gcc "/bin/" program
|
||||
"--disable-assembly")
|
||||
;; Gash crashes on mkdir called through install creating %output/share/info
|
||||
#:make-flags #~(list "MKDIRPROG=mkdir -p")))))
|
||||
|
||||
(define mpfr-boot1
|
||||
(package
|
||||
(inherit mpfr)
|
||||
(outputs '("out"))
|
||||
(name "mpfr-boot1")
|
||||
(source (bootstrap-origin (package-source mpfr)))
|
||||
(native-inputs (if (target-x86?)
|
||||
`(("gcc-wrapper" ,gcc-mesboot1-wrapper)
|
||||
("headers" ,glibc-headers-mesboot)
|
||||
,@(%boot-mesboot4-inputs))
|
||||
(%boot-tcc-musl-inputs)))
|
||||
(inputs '())
|
||||
(propagated-inputs (list gmp-boot1))
|
||||
(arguments
|
||||
(list
|
||||
#:guile %bootstrap-guile
|
||||
#:tests? #f
|
||||
#:implicit-inputs? #f
|
||||
#:parallel-build? #f
|
||||
#:configure-flags
|
||||
#~(list #$@(if (target-x86?)
|
||||
#~()
|
||||
#~("CC=tcc"))
|
||||
(string-append "--build=" #$(commencement-build-target))
|
||||
(string-append "--host=" #$(commencement-build-target))
|
||||
"--enable-static"
|
||||
"--disable-shared")))))
|
||||
(define gcc-mesboot
|
||||
(package
|
||||
(inherit gcc-mesboot1)
|
||||
|
||||
Reference in New Issue
Block a user