emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#53834: closed ([PATCH] gnu: Add cproc.)


From: GNU bug Tracking System
Subject: bug#53834: closed ([PATCH] gnu: Add cproc.)
Date: Tue, 05 Apr 2022 16:13:02 +0000

Your message dated Tue, 05 Apr 2022 18:12:29 +0200
with message-id <87o81fldaq.fsf@gnu.org>
and subject line Re: bug#53834: [PATCH] gnu: Add cproc.
has caused the debbugs.gnu.org bug report #53834,
regarding [PATCH] gnu: Add cproc.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
53834: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=53834
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add cproc. Date: Sun, 6 Feb 2022 20:14:15 -0500
* gnu/packages/c.scm (cproc): New variable.
---

Hi Guixers,

This is a WIP in case anyone would like to help check/test/review this package.

cproc depends on qbe which is available from ticket 53833.

all best,

jgart

 gnu/packages/c.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm
index 8966b7b8d0..87a6d413bc 100644
--- a/gnu/packages/c.scm
+++ b/gnu/packages/c.scm
@@ -172,6 +172,38 @@ (define-public qbe
       (home-page "https://c9x.me/compile/";)
       (license license:expat))))
 
+(define-public cproc
+  (let ((commit "51e61fa5fa3de8cabc2191a5c6ac4d18aaaaf049")
+        (revision "0"))
+    (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
+            "1fyyqxg2fphh104yrn15az0w7vipkljkgspi6kzv8lyddl5758nj"))))
+      (build-system gnu-build-system)
+      (arguments
+       `(#:tests? #f
+         #:make-flags (list (string-append "CC=" ,(cc-for-target))
+                            (string-append "PREFIX=" %output))
+         #:phases
+         (modify-phases %standard-phases
+           (delete 'configure))))
+      (inputs
+        (list qbe))
+      (synopsis "C11 compiler")
+      (description "@code{cproc} is a C11 compiler using QBE as a backend.")
+      (home-page "https://sr.ht/~mcf/cproc";)
+      (license license:expat))))
+
 (define-public libbytesize
   (package
     (name "libbytesize")
-- 
2.35.0




--- End Message ---
--- Begin Message --- Subject: Re: bug#53834: [PATCH] gnu: Add cproc. Date: Tue, 05 Apr 2022 18:12:29 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)
jgart <jgart@dismail.de> skribis:

> This is a WIP in case anyone would like to help check/test/review this 
> package.
>
> cproc depends on qbe which is available from ticket 53833.

As with <https://issues.guix.gnu.org/53833>, please ping us when you
think that it can get in together with qbe.

Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]