mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: vlc: Drop -ffast-math from the compilation flags.
* gnu/packages/video.scm (vlc)[arguments]: Add "ac_cv_c_fast_math=no" to #:configure-flags.
This commit is contained in:
parent
ae32c58e28
commit
c6b3dc69bd
1 changed files with 6 additions and 0 deletions
|
@ -623,6 +623,12 @@ (define-public vlc
|
|||
(arguments
|
||||
`(#:configure-flags
|
||||
`("--disable-a52" ; FIXME: reenable once available
|
||||
|
||||
;; Gross workaround for <https://trac.videolan.org/vlc/ticket/16907>.
|
||||
;; In our case, this led to a test failure:
|
||||
;; test_libvlc_equalizer: libvlc/equalizer.c:122: test_equalizer: Assertion `isnan(libvlc_audio_equalizer_get_amp_at_index (equalizer, u_bands))' failed.
|
||||
"ac_cv_c_fast_math=no"
|
||||
|
||||
,(string-append "LDFLAGS=-Wl,-rpath -Wl,"
|
||||
(assoc-ref %build-inputs "ffmpeg")
|
||||
"/lib")) ;needed for the tests
|
||||
|
|
Loading…
Reference in a new issue