Message ID | 20200614145308.32592-1-dannym@scratchpost.org |
---|---|
State | New |
Headers | show |
Series | [bug#41854] gnu: musl: Enable gcc wrapper. | expand |
Context | Check | Description |
---|---|---|
cbaines/comparison | success | View comparision |
cbaines/git branch | success | View Git branch |
cbaines/applying patch | success | View Laminar job |
Hey Danny, > - `(#:tests? #f ; musl has no tests > - #:configure-flags > - (list "--disable-gcc-wrapper"))) > + `(#:tests? #f)) ; musl has no tests Not sure why it was disabled in the first place, but I think you can go for it. Thanks, Mathieu
Hello, I don't remember why it was disabled, so if it works for you, please go ahead and commit.
Hi, This patch was going to be merged but it was forgotten. It still builds fine on my end. Can someone merge this please? Thanks in advance, Noé Lopez
Noé Lopez via Guix-patches via <guix-patches@gnu.org> writes: > Hi, > > This patch was going to be merged but it was forgotten. It still > builds fine on my end. > > Can someone merge this please? > > Thanks in advance, > Noé Lopez push, see https://git.savannah.gnu.org/cgit/guix.git/commit/?id=36fcf6092f47ae5d4fad24b3f2f7025f6214a1c3
diff --git a/gnu/packages/musl.scm b/gnu/packages/musl.scm index 44c39750d6..61519a36e0 100644 --- a/gnu/packages/musl.scm +++ b/gnu/packages/musl.scm @@ -38,9 +38,7 @@ "1s6lix02k1ijm4nmhzpmwzk5w6xfkhn70nvvk8zjs51r24cpppn6")))) (build-system gnu-build-system) (arguments - `(#:tests? #f ; musl has no tests - #:configure-flags - (list "--disable-gcc-wrapper"))) + `(#:tests? #f)) ; musl has no tests (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.")