diff options
author | Mark H Weaver <mhw@netris.org> | 2016-05-21 12:49:24 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2016-05-21 12:52:51 -0400 |
commit | 12b6f6527e49c8c4191929a72b1692dbd9eb2440 (patch) | |
tree | 3199ff5408b0bf00c10ad5576edee98ae102a992 | |
parent | 45ff4b568d5adac1ba0185055844517af3c9b318 (diff) | |
download | guix-12b6f6527e49c8c4191929a72b1692dbd9eb2440.tar guix-12b6f6527e49c8c4191929a72b1692dbd9eb2440.tar.gz |
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.
-rw-r--r-- | gnu/packages/tls.scm | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index 430540493c..35bd64faa9 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -237,15 +237,7 @@ required structures.") (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) |