gnu: commencement: Add hello-mesboot.

* gnu/packages/commencement.scm (hello-mesboot): New variable.
This commit is contained in:
Jan Nieuwenhuizen 2019-11-22 21:55:45 +01:00
parent 9c4a021211
commit 079b2cf3a2
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 22 additions and 0 deletions

View File

@ -2224,6 +2224,28 @@ ac_cv_c_float_format='IEEE (little-endian)'
"ac_cv_have_decl_optreset=no"
"CPPFLAGS=-D__GNUC__=1")))))
(define hello-mesboot
;; Check for Scheme-only bootstrap.
(package
(inherit hello)
(name "hello-mesboot")
(supported-systems '("i686-linux" "x86_64-linux"))
(inputs '())
(propagated-inputs '())
(native-inputs (%boot-mesboot2-inputs))
(arguments
`(#:implicit-inputs? #f
#:guile ,%bootstrap-guile
#:parallel-build? #f
;; checking for grep that handles long lines and -e...
;; configure: error: no acceptable grep could be found
#:configure-flags '("ac_cv_path_GREP=grep")
#:phases
(modify-phases %standard-phases
(replace 'check
(lambda _
(invoke "./hello"))))))))
(define binutils-mesboot
(package
(inherit binutils-mesboot0)