diff options
author | Mark H Weaver <mhw@netris.org> | 2016-05-13 01:18:42 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2016-05-13 01:18:42 -0400 |
commit | e9017c98d61f305b624bacaa30e8891ec0100980 (patch) | |
tree | 1e0e55748dc74102d4bce386d6eb315ff4379392 /gnu/packages | |
parent | 99828fa78896ef2f3ec9228a4093562726ad85c6 (diff) | |
download | guix-e9017c98d61f305b624bacaa30e8891ec0100980.tar guix-e9017c98d61f305b624bacaa30e8891ec0100980.tar.gz |
gnu: jemalloc: No longer build with gcc-4.8 on i686.
* gnu/packages/jemalloc.scm (jemalloc)[native-inputs]: Remove field.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/jemalloc.scm | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gnu/packages/jemalloc.scm b/gnu/packages/jemalloc.scm index 143c80c2cb..52d43e8bd3 100644 --- a/gnu/packages/jemalloc.scm +++ b/gnu/packages/jemalloc.scm @@ -37,12 +37,6 @@ (base32 "13pc6gcs5d6ws63jv83vslrb1vlqdnf1dg43awkb9bbj9xqnvl7s")))) (build-system gnu-build-system) - ;; XXX FIXME: Use gcc-4.8 on i686 to work around - ;; <http://bugs.gnu.org/20856>. - (native-inputs (if (and (not (%current-target-system)) - (string-prefix? "i686-" (%current-system))) - `(("gcc" ,(canonical-package gcc-4.8))) - '())) (home-page "http://www.canonware.com/jemalloc/") (synopsis "General-purpose scalable concurrent malloc implementation") (description |