From 12b6f6527e49c8c4191929a72b1692dbd9eb2440 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Sat, 21 May 2016 12:49:24 -0400 Subject: 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. --- gnu/packages/tls.scm | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'gnu') 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: - ;; - ,@(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) -- cgit v1.2.3