all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Maxim Cournoyer <maxim.cournoyer@gmail.com>
To: Olivier Dion <olivier.dion@polymtl.ca>
Cc: 65059@debbugs.gnu.org, Olivier Dion <odion@efficios.com>,
	Tobias Geerinckx-Rice <me@tobias.gr>,
	Leo Famulari <leo@famulari.name>
Subject: [bug#65059] [PATCH] gnu: Add csmith.
Date: Wed, 06 Sep 2023 00:54:53 -0400	[thread overview]
Message-ID: <87h6o79a02.fsf@gmail.com> (raw)
In-Reply-To: <cccd5b0895b2e14d183a5e303f325e217365bffb.1691182734.git.olivier.dion@polymtl.ca> (Olivier Dion's message of "Fri, 4 Aug 2023 16:58:57 -0400")

Hi there!

Olivier Dion <olivier.dion@polymtl.ca> writes:

> From: Olivier Dion <odion@efficios.com>
>
> * gnu/packages/linux.scm (csmith): New variable.
> ---
>  gnu/packages/linux.scm | 37 +++++++++++++++++++++++++++++++++++++
>  1 file changed, 37 insertions(+)
>
> diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
> index 3aec03a3ec..84ccf5bb13 100644
> --- a/gnu/packages/linux.scm
> +++ b/gnu/packages/linux.scm
> @@ -139,6 +139,7 @@ (define-module (gnu packages linux)
>    #:use-module (gnu packages llvm)
>    #:use-module (gnu packages lsof)
>    #:use-module (gnu packages lua)
> +  #:use-module (gnu packages m4)
>    #:use-module (gnu packages man)
>    #:use-module (gnu packages maths)
>    #:use-module (gnu packages multiprecision)
> @@ -10418,3 +10419,39 @@ (define-public spectre-meltdown-checker
>  against the several transient execution CVEs that were published since early
>  2018, and gives guidance as to how to mitigate them.")
>      (license license:gpl3)))
> +
> +(define-public csmith
> +  (package
> +    (name "csmith")
> +    (version "2.3.0")
> +    (source (origin
> +              (method git-fetch)
> +              (uri (git-reference
> +                    (url "https://github.com/csmith-project/csmith")
> +                    (commit (string-append "csmith-" version))))
> +              (sha256
> +               (base32
> +                "0nhrsnv6cny14xz68qb1h30fbwc05adkisk51p3x63mydm60ddl3"))))
> +    (build-system gnu-build-system)
> +    (native-inputs
> +     (list autoconf automake libtool m4 perl))
> +    (arguments
> +     (list
> +      ;; There is no tests.
> +      #:tests? #f
> +      ;; Do not install headers under include/csmith-VERSION but in include/csmith

Please keep line width under 80 chars; end with trailing period.

> +      #:phases
> +      `(modify-phases %standard-phases
> +         (add-after 'unpack 'patch-includedir
> +           (lambda _
> +             (substitute* "runtime/Makefile.am"
> +               (("\\$\\(includedir\\)/\\$\\(PACKAGE\\)-\\$\\(VERSION\\)")
> +                "$(includedir)/$(PACKAGE)"))))
> +         (replace 'bootstrap
> +           (lambda _
> +             (invoke "autoreconf" "-vfi"))))))

Insteadof replacing bootstrap you can just (delete-file "configure") to
have it recreated.

> +    (home-page "https://github.com/csmith-project/csmith")
> +    (synopsis "Random generator of C programs")
> +    (description "Csmith primary purpose is to find compiler bugs with random
> +programs using differential testing.")

Csmith's or The primary purpose of

The rest LGTM.  Could you send a v2?

-- 
Thanks,
Maxim




  reply	other threads:[~2023-09-06  4:56 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-04 20:58 [bug#65059] [PATCH] gnu: Add csmith Olivier Dion
2023-09-06  4:54 ` Maxim Cournoyer [this message]
2023-09-06 20:22   ` [bug#65059] [PATCH v2] " odion
2023-09-07  2:33     ` bug#65059: " Maxim Cournoyer

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87h6o79a02.fsf@gmail.com \
    --to=maxim.cournoyer@gmail.com \
    --cc=65059@debbugs.gnu.org \
    --cc=leo@famulari.name \
    --cc=me@tobias.gr \
    --cc=odion@efficios.com \
    --cc=olivier.dion@polymtl.ca \
    /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 external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.