diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index 8895fd774e..45c37f7493 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -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: + ;; + ,@(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)