mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: qd: Use G-expressions.
* gnu/packages/multiprecision.scm (qd): Adjust package style by using G-expressions. Change-Id: I9265979343e67d1d9e9e69b7b071ea1e429d3ee4 Signed-off-by: Eric Bavier <bavier@posteo.net>
This commit is contained in:
parent
2ab5e44924
commit
1f4fb3f47c
1 changed files with 13 additions and 12 deletions
|
@ -10,6 +10,7 @@
|
|||
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
|
||||
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||
;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -263,18 +264,18 @@ (define-public qd
|
|||
(native-inputs
|
||||
(list gfortran))
|
||||
(arguments
|
||||
`(#:configure-flags `("--disable-enable_fma" ;weird :/
|
||||
"--disable-static"
|
||||
"--enable-shared"
|
||||
,,@(if (string-prefix? "aarch64"
|
||||
(or (%current-target-system)
|
||||
(%current-system)))
|
||||
;; XXX: The qd_test test fails numerical
|
||||
;; accuracy checks for 'dd_real::exp()' on
|
||||
;; aarch64 with GCC 5.4 at -O2. Disabling
|
||||
;; expensive optimizations lets it pass.
|
||||
'("CXXFLAGS=-O3 -fno-expensive-optimizations")
|
||||
'("CXXFLAGS=-O3")))))
|
||||
(list
|
||||
#:configure-flags
|
||||
#~(list "--disable-enable_fma" ;weird :/
|
||||
"--disable-static"
|
||||
"--enable-shared"
|
||||
#$@(if (target-aarch64?)
|
||||
;; XXX: The qd_test test fails numerical
|
||||
;; accuracy checks for 'dd_real::exp()' on
|
||||
;; aarch64 with GCC 5.4 at -O2. Disabling
|
||||
;; expensive optimizations lets it pass.
|
||||
'("CXXFLAGS=-O3 -fno-expensive-optimizations")
|
||||
'("CXXFLAGS=-O3")))))
|
||||
(home-page "https://www.davidhbailey.com/dhbsoftware/")
|
||||
(synopsis "Double-double and quad-double library")
|
||||
(description "This package supports both a double-double
|
||||
|
|
Loading…
Reference in a new issue