gnu: sorcer: Fix building on non-Intel hardware.
* gnu/packages/music.scm (sorcer)[arguments]: Add phase to remove architecture specific build flags.
This commit is contained in:
parent
b1e9837a3c
commit
e5af1f4af3
|
@ -3316,6 +3316,11 @@ notation and includes basic support for digital audio.")
|
|||
`(#:tests? #f ; no tests included
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'remove-architecture-specific-flags
|
||||
(lambda _
|
||||
(substitute* "CMakeLists.txt"
|
||||
(("-msse2 -mfpmath=sse") ""))
|
||||
#t))
|
||||
(add-after 'unpack 'build-faust-sources
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(with-directory-excursion "faust"
|
||||
|
|
Loading…
Reference in New Issue