From: Maxim Cournoyer <maxim.cournoyer@gmail.com>
To: "(unmatched-parenthesis" <paren@disroot.org>
Cc: 53834-done@debbugs.gnu.org
Subject: bug#53834: [PATCH] gnu: Add cproc.
Date: Thu, 07 Jul 2022 16:12:57 -0400 [thread overview]
Message-ID: <875yk8y94m.fsf_-_@gmail.com> (raw)
In-Reply-To: <20220508202500.10449-1-paren@disroot.org> (paren@disroot.org's message of "Sun, 8 May 2022 21:25:00 +0100")
Hello!
"(unmatched-parenthesis" <paren@disroot.org> writes:
> * gnu/packages/c.scm (cproc): New variable.
>
> Signed-off-by: (unmatched-parenthesis <paren@disroot.org>
> ---
> This improved patch fixes some style nits.
>
> Thanks to lilyp for pointing them out on #guix!
>
> gnu/packages/c.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 46 insertions(+)
>
> diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm
> index c9a25eb801..216ddfef88 100644
> --- a/gnu/packages/c.scm
> +++ b/gnu/packages/c.scm
> @@ -47,6 +47,7 @@ (define-module (gnu packages c)
> #:use-module (gnu packages bison)
> #:use-module (gnu packages check)
> #:use-module (gnu packages flex)
> + #:use-module (gnu packages gcc)
> #:use-module (gnu packages perl)
> #:use-module (gnu packages texinfo)
> #:use-module (gnu packages guile)
> @@ -1108,3 +1109,48 @@ (define-public qbe
> language as input.")
> (home-page "https://c9x.me/compile/")
> (license license:expat))))
> +
> +(define-public cproc
> + (let ((commit "70fe9ef1810cc6c05bde9eb0970363c35fa7e802")
> + (revision "1"))
> + (package
> + (name "cproc")
> + (version (git-version "0.0" revision commit))
> + (source
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://git.sr.ht/~mcf/cproc")
> + (commit commit)))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32 "1qmgzll7z7mn587azkj4cizyyd8ii6iznfxpc66ja08140sbn9yx"))))
> + (build-system gnu-build-system)
> + (arguments
> + (list #:make-flags
> + #~(list (string-append "CC=" #$(cc-for-target))
> + (string-append "PREFIX=" #$output))
> + #:phases
> + #~(modify-phases %standard-phases
> + (replace 'configure
> + (lambda* (#:key inputs outputs #:allow-other-keys)
> + (let ((out (assoc-ref outputs "out"))
> + (gcc-lib (assoc-ref inputs "gcc:lib"))
> + (host-system #$(nix-system->gnu-triplet (%current-system)))
> + (target-system
> + #$(nix-system->gnu-triplet (or (%current-target-system)
> + (%current-system)))))
> + (invoke "./configure"
> + (string-append "--prefix=" out)
> + (string-append "--host=" host-system)
> + (string-append "--target=" target-system)
> + (string-append "--with-ld=" #$(ld-for-target))
> + (string-append "--with-gcc-libdir=" gcc-lib))))))))
> + (inputs `(("qbe" ,qbe)
> + ("gcc:lib" ,gcc "lib")))
> + (supported-systems (list "x86_64-linux" "aarch64-linux"))
> + (synopsis "Simple C11 compiler backed by QBE")
> + (description "@code{cproc} is a C compiler using QBE as a backend, supporting most of C11
> +along with some GCC and C2x extensions.")
> + (home-page "https://sr.ht/~mcf/cproc")
> + (license license:expat))))
Well done! I've adjusted slightly the source to fit under 80 columns,
and push as 96eb2337b5c3d43c99979222633987a8e45df4b9. Thank you!
Maxim
next prev parent reply other threads:[~2022-07-07 20:14 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-07 1:14 [bug#53834] [PATCH] gnu: Add cproc jgart via Guix-patches via
2022-04-05 16:12 ` bug#53834: " Ludovic Courtès
2022-05-07 18:04 ` [bug#53834] " (unmatched-parenthesis via Guix-patches via
2022-05-08 20:25 ` [bug#53834] [PATCH v2] " (unmatched-parenthesis via Guix-patches via
2022-07-07 20:12 ` Maxim Cournoyer [this message]
2022-07-08 6:40 ` [bug#53834] [PATCH] " ( via Guix-patches via
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=875yk8y94m.fsf_-_@gmail.com \
--to=maxim.cournoyer@gmail.com \
--cc=53834-done@debbugs.gnu.org \
--cc=paren@disroot.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).