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

* gnu/packages/tls.scm (openssl)[arguments]: In the 'configure' phase,
remove the workaround that passed "-mfpu=vfpv3" on armhf systems.
This commit is contained in:
Mark H Weaver 2016-05-21 12:49:24 -04:00
parent 45ff4b568d
commit 12b6f6527e
No known key found for this signature in database
GPG key ID: 7CEF29847562C516

View file

@ -237,15 +237,7 @@ (define-public openssl
(string-append "--openssldir=" out
"/share/openssl-" ,version)
(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")
'()))))))
(string-append "--prefix=" out))))))
(add-after
'install 'make-libraries-writable
(lambda* (#:key outputs #:allow-other-keys)