me
/
guix
Archived
1
0
Fork 0

Revert "gnu: openssl: Remove workaround for GCC 4.9.3 (no longer used)."

This reverts commit 12b6f6527e.
master
Mark H Weaver 2016-06-10 16:52:50 -04:00
parent 05aa576b37
commit 8af5cac527
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 9 additions and 1 deletions

View File

@ -237,7 +237,15 @@ required structures.")
(string-append "--openssldir=" out
"/share/openssl-" ,version)
(string-append "--prefix=" out))))))
(string-append "--prefix=" out)
;; XXX FIXME: Work around a code generation bug in GCC
;; 4.9.3 on ARM when compiled with -mfpu=neon. See:
;; <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66917>
,@(if (and (not (%current-target-system))
(string-prefix? "armhf" (%current-system)))
'("-mfpu=vfpv3")
'()))))))
(add-after
'install 'make-libraries-writable
(lambda* (#:key outputs #:allow-other-keys)