mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: freesasa: Fix memerr tests.
* gnu/packages/chemistry.scm (freesasa)[arguments]: Add "CFLAGS=-fno-builtin-malloc" to #:configure-flags. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
52cca41c6f
commit
cc772e7f31
1 changed files with 6 additions and 1 deletions
|
@ -708,7 +708,12 @@ (define-public freesasa
|
|||
#~(list "--enable-check"
|
||||
"--enable-parser-generator"
|
||||
"CXXFLAGS=-std=c++17"
|
||||
"--enable-doxygen")
|
||||
"--enable-doxygen"
|
||||
;; Some tests rely on replacing malloc with a wrapper which
|
||||
;; fails in a controlled way, but this does not work if the call
|
||||
;; is replaced. This was fixed upstream, remove once there is a
|
||||
;; new release.
|
||||
"CFLAGS=-fno-builtin-malloc")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'remove-libc++-linking
|
||||
|
|
Loading…
Reference in a new issue