diff options
author | Andreas Enge <andreas@enge.fr> | 2022-06-17 19:54:46 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2022-06-17 19:54:46 +0200 |
commit | 25d32d1f761b9cc9b0b2894b37b3de4cb407bf09 (patch) | |
tree | 8b527e353850b8dd9dfbc8d6d23db634febf850f | |
parent | 956f0b4465a715decb403df58760ae938526db66 (diff) | |
download | guix-25d32d1f761b9cc9b0b2894b37b3de4cb407bf09.tar.gz |
gnu: pari-gp: Enable pthreads.
* gnu/packages/algebra.scm (pari-gp): Add --mt=pthread to configure flags.
-rw-r--r-- | gnu/packages/algebra.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index 16142eaf8a..3dd476ace9 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -242,6 +242,7 @@ the real span of the lattice.") (replace 'configure (lambda* (#:key outputs #:allow-other-keys) (invoke "./Configure" + "--mt=pthread" (string-append "--prefix=" (assoc-ref outputs "out")))))))) (synopsis "PARI/GP, a computer algebra system for number theory") |