me
/
guix
Archived
1
0
Fork 0

gnu: musl: Install compiler wrappers.

* gnu/packages/musl.scm (musl)[arguments]: Adjust configure-flags to
install all the compiler wrappers.
[inputs]: Add bash-minimal.

Change-Id: I26c0b4456ec8bc060544e8feb0c328db6498e2bd
master
Efraim Flashner 2024-06-26 09:07:06 +03:00
parent d2585eda99
commit f0eb8fc162
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 5 additions and 2 deletions

View File

@ -25,7 +25,8 @@
#:use-module (guix gexp)
#:use-module (guix build-system gnu)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages))
#:use-module (gnu packages)
#:use-module (gnu packages bash))
(define-public musl
(package
@ -42,7 +43,9 @@
(arguments
(list #:tests? #f ; musl has no tests
#:configure-flags
#~(list (string-append "--syslibdir=" #$output "/lib"))))
#~(list "--enable-wrapper=all"
(string-append "--syslibdir=" #$output "/lib"))))
(inputs (list bash-minimal))
(synopsis "Small C standard library")
(description "musl is a simple and lightweight C standard library. It
strives to be correct in the sense of standards-conformance and safety.")