2013-03-27 15:13:25 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2018-02-17 23:34:47 +01:00
|
|
|
;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
|
2018-01-25 20:09:32 +01:00
|
|
|
;;; Copyright © 2014, 2015, 2018 Mark H Weaver <mhw@netris.org>
|
2017-05-17 13:26:13 +02:00
|
|
|
;;; Copyright © 2014, 2015, 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
|
2015-03-06 22:45:47 +01:00
|
|
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
2018-01-17 21:08:01 +01:00
|
|
|
;;; Copyright © 2015, 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
2017-01-04 23:47:24 +01:00
|
|
|
;;; Copyright © 2016 Carlos Sánchez de La Lama <csanchezdll@gmail.com>
|
2018-02-19 22:51:08 +01:00
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2018-06-26 01:52:18 +02:00
|
|
|
;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
|
2013-03-27 15:13:25 +01:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages gcc)
|
2013-04-20 17:47:59 +02:00
|
|
|
#:use-module ((guix licenses)
|
2015-07-19 22:27:37 +02:00
|
|
|
#:select (gpl3+ gpl2+ lgpl2.1+ lgpl2.0+ fdl1.3+))
|
2013-03-27 15:13:25 +01:00
|
|
|
#:use-module (gnu packages)
|
|
|
|
#:use-module (gnu packages bootstrap)
|
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
#:use-module (gnu packages multiprecision)
|
2013-07-06 18:08:29 +02:00
|
|
|
#:use-module (gnu packages texinfo)
|
2015-10-22 13:02:37 +02:00
|
|
|
#:use-module (gnu packages dejagnu)
|
gnu: Update module imports for asciidoc and doxygen.
This is a followup to commit 0573a923def01e54bf104e0015ade44ab42f694f.
* gnu/packages/algebra.scm, gnu/packages/bioinformatics.scm,
gnu/packages/fcitx.scm, gnu/packages/fish.scm,
gnu/packages/freedesktop.scm, gnu/packages/game-development.scm,
gnu/packages/gcc.scm, gnu/packages/graphics.scm, gnu/packages/image.scm,
gnu/packages/kodi.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/messaging.scm,
gnu/packages/mpd.scm, gnu/packages/music.scm, gnu/packages/rdf.scm,
gnu/packages/serialization.scm, gnu/packages/version-control.scm,
gnu/packages/web.scm, gnu/packages/wm.scm, gnu/packages/xdisorg.scm,
gnu/packages/xiph.scm: Change imports of (gnu packages asciidoc) or
(gnu packages doxygen) to (gnu packages documentation).
2016-05-13 02:18:15 +02:00
|
|
|
#:use-module (gnu packages documentation)
|
2015-07-12 23:09:44 +02:00
|
|
|
#:use-module (gnu packages xml)
|
|
|
|
#:use-module (gnu packages docbook)
|
|
|
|
#:use-module (gnu packages graphviz)
|
2013-12-15 23:27:56 +01:00
|
|
|
#:use-module (gnu packages elf)
|
2015-04-20 15:50:59 +02:00
|
|
|
#:use-module (gnu packages perl)
|
2013-03-27 15:13:25 +01:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2013-06-26 23:02:49 +02:00
|
|
|
#:use-module (guix build-system gnu)
|
2014-12-23 12:31:50 +01:00
|
|
|
#:use-module (guix build-system trivial)
|
2013-11-01 21:34:24 +01:00
|
|
|
#:use-module (guix utils)
|
2016-10-07 22:06:24 +02:00
|
|
|
#:use-module (srfi srfi-1)
|
2013-06-26 23:02:49 +02:00
|
|
|
#:use-module (ice-9 regex))
|
2013-03-27 15:13:25 +01:00
|
|
|
|
2013-03-27 15:37:27 +01:00
|
|
|
(define %gcc-infrastructure
|
|
|
|
;; Base URL for GCC's infrastructure.
|
2016-11-19 18:42:12 +01:00
|
|
|
"mirror://gcc/infrastructure/")
|
2013-03-27 15:37:27 +01:00
|
|
|
|
2015-01-07 16:00:44 +01:00
|
|
|
(define (gcc-configure-flags-for-triplet target)
|
2013-06-26 23:02:49 +02:00
|
|
|
"Return a list of additional GCC `configure' flags for TARGET, a GNU triplet.
|
|
|
|
|
|
|
|
The purpose of this procedure is to translate extended GNU triplets---e.g.,
|
|
|
|
where the OS part is overloaded to denote a specific ABI---into GCC
|
|
|
|
`configure' options. We take extended GNU triplets that glibc recognizes."
|
|
|
|
(cond ((string-match "^mips64el.*gnuabin?64$" target)
|
|
|
|
;; Triplets recognized by glibc as denoting the N64 ABI; see
|
|
|
|
;; ports/sysdeps/mips/preconfigure.
|
|
|
|
'("--with-abi=64"))
|
2015-01-07 21:55:23 +01:00
|
|
|
|
|
|
|
((string-match "^arm.*-gnueabihf$" target)
|
|
|
|
'("--with-arch=armv7-a"
|
|
|
|
"--with-float=hard"
|
|
|
|
"--with-mode=thumb"
|
2015-07-10 20:51:04 +02:00
|
|
|
"--with-fpu=neon"))
|
2015-01-07 21:55:23 +01:00
|
|
|
|
2017-12-31 01:18:34 +01:00
|
|
|
((and (string-suffix? "-gnu" target)
|
|
|
|
(not (string-contains target "-linux")))
|
|
|
|
;; Cross-compilation of libcilkrts in GCC 5.5.0 to GNU/Hurd fails
|
|
|
|
;; with:
|
|
|
|
;; libcilkrts/runtime/os-unix.c:388:2: error: #error "Unknown architecture"
|
|
|
|
;; Cilk has been removed from GCC 8 anyway.
|
|
|
|
'("--disable-libcilkrts"))
|
|
|
|
|
2013-06-26 23:02:49 +02:00
|
|
|
(else
|
2015-01-07 21:55:23 +01:00
|
|
|
;; TODO: Add `arm.*-gnueabi', etc.
|
2013-06-26 23:02:49 +02:00
|
|
|
'())))
|
|
|
|
|
2013-03-27 15:13:25 +01:00
|
|
|
(define-public gcc-4.7
|
2015-06-09 21:51:18 +02:00
|
|
|
(let* ((stripped? #t) ;whether to strip the compiler, not the libraries
|
2013-06-26 16:51:39 +02:00
|
|
|
(maybe-target-tools
|
|
|
|
(lambda ()
|
|
|
|
;; Return the `_FOR_TARGET' variables that are needed when
|
|
|
|
;; cross-compiling GCC.
|
|
|
|
(let ((target (%current-target-system)))
|
|
|
|
(if target
|
|
|
|
(map (lambda (var tool)
|
|
|
|
(string-append (string-append var "_FOR_TARGET")
|
|
|
|
"=" target "-" tool))
|
2017-12-20 22:21:16 +01:00
|
|
|
'("CC" "CXX" "LD" "AR" "NM" "OBJDUMP" "RANLIB" "STRIP")
|
|
|
|
'("gcc" "g++" "ld" "ar" "nm" "objdump" "ranlib" "strip"))
|
2013-06-26 16:51:39 +02:00
|
|
|
'()))))
|
2015-04-02 10:26:15 +02:00
|
|
|
(libdir
|
|
|
|
(let ((base '(or (assoc-ref outputs "lib")
|
|
|
|
(assoc-ref outputs "out"))))
|
|
|
|
(lambda ()
|
|
|
|
;; Return the directory that contains lib/libgcc_s.so et al.
|
|
|
|
(if (%current-target-system)
|
|
|
|
`(string-append ,base "/" ,(%current-target-system))
|
|
|
|
base))))
|
2013-06-26 16:51:39 +02:00
|
|
|
(configure-flags
|
|
|
|
(lambda ()
|
|
|
|
;; This is terrible. Since we have two levels of quasiquotation,
|
|
|
|
;; we have to do this convoluted thing just so we can insert the
|
|
|
|
;; contents of (maybe-target-tools).
|
|
|
|
(list 'quasiquote
|
|
|
|
(append
|
|
|
|
'("--enable-plugin"
|
|
|
|
"--enable-languages=c,c++"
|
|
|
|
"--disable-multilib"
|
2015-12-11 23:45:29 +01:00
|
|
|
"--with-system-zlib"
|
2013-06-26 16:51:39 +02:00
|
|
|
|
2013-11-15 00:10:10 +01:00
|
|
|
;; No pre-compiled libstdc++ headers, to save space.
|
|
|
|
"--disable-libstdcxx-pch"
|
|
|
|
|
2013-06-26 16:51:39 +02:00
|
|
|
"--with-local-prefix=/no-gcc-local-prefix"
|
|
|
|
|
2014-06-09 11:58:43 +02:00
|
|
|
;; With a separate "lib" output, the build system
|
|
|
|
;; incorrectly guesses GPLUSPLUS_INCLUDE_DIR, so force
|
|
|
|
;; it. (Don't use a versioned sub-directory, that's
|
|
|
|
;; unnecessary.)
|
|
|
|
,(string-append "--with-gxx-include-dir="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/include/c++")
|
|
|
|
|
2013-06-26 16:51:39 +02:00
|
|
|
,(let ((libc (assoc-ref %build-inputs "libc")))
|
|
|
|
(if libc
|
|
|
|
(string-append "--with-native-system-header-dir=" libc
|
|
|
|
"/include")
|
|
|
|
"--without-headers")))
|
|
|
|
|
2015-01-07 16:00:44 +01:00
|
|
|
;; Pass the right options for the target triplet.
|
|
|
|
(let ((triplet
|
|
|
|
(or (%current-target-system)
|
|
|
|
(nix-system->gnu-triplet (%current-system)))))
|
|
|
|
(gcc-configure-flags-for-triplet triplet))
|
2013-06-26 23:02:49 +02:00
|
|
|
|
2013-06-26 16:51:39 +02:00
|
|
|
(maybe-target-tools))))))
|
2013-03-27 15:13:25 +01:00
|
|
|
(package
|
2013-06-26 16:51:39 +02:00
|
|
|
(name "gcc")
|
2014-06-14 22:21:29 +02:00
|
|
|
(version "4.7.4")
|
2013-06-26 16:51:39 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/gcc/gcc-"
|
|
|
|
version "/gcc-" version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-10-01 15:27:31 +02:00
|
|
|
"10k2k71kxgay283ylbbhhs51cl55zn2q38vj5pk4k950qdnirrlj"))
|
2018-04-21 11:08:53 +02:00
|
|
|
(patches (search-patches "gcc-4-compile-with-gcc-5.patch"
|
|
|
|
"gcc-fix-texi2pod.patch"))))
|
2013-06-26 16:51:39 +02:00
|
|
|
(build-system gnu-build-system)
|
2014-06-09 11:58:43 +02:00
|
|
|
|
|
|
|
;; Separate out the run-time support libraries because all the
|
|
|
|
;; dynamic-linked objects depend on it.
|
2015-06-09 21:51:18 +02:00
|
|
|
(outputs '("out" ;commands, etc. (60+ MiB)
|
|
|
|
"lib" ;libgcc_s, libgomp, etc. (15+ MiB)
|
|
|
|
"debug")) ;debug symbols of run-time libraries
|
2014-06-09 11:58:43 +02:00
|
|
|
|
2013-06-26 16:51:39 +02:00
|
|
|
(inputs `(("gmp" ,gmp)
|
|
|
|
("mpfr" ,mpfr)
|
|
|
|
("mpc" ,mpc)
|
|
|
|
("libelf" ,libelf)
|
|
|
|
("zlib" ,zlib)))
|
2013-07-06 18:08:29 +02:00
|
|
|
|
2016-04-24 21:55:37 +02:00
|
|
|
;; GCC < 5 is one of the few packages that doesn't ship .info files.
|
2016-11-08 15:24:29 +01:00
|
|
|
;; Newer texinfos fail to build the manual, so we use an older one.
|
2017-10-01 15:27:31 +02:00
|
|
|
(native-inputs `(("perl" ,perl) ;for manpages
|
|
|
|
("texinfo" ,texinfo-5)))
|
2013-07-06 18:08:29 +02:00
|
|
|
|
2013-06-26 16:51:39 +02:00
|
|
|
(arguments
|
|
|
|
`(#:out-of-source? #t
|
|
|
|
#:configure-flags ,(configure-flags)
|
|
|
|
#:make-flags
|
2014-06-14 16:04:30 +02:00
|
|
|
;; None of the flags below are needed when doing a Canadian cross.
|
|
|
|
;; TODO: Simplify this.
|
|
|
|
,(if (%current-target-system)
|
|
|
|
(if stripped?
|
|
|
|
''("CFLAGS=-g0 -O2")
|
|
|
|
''())
|
|
|
|
`(let* ((libc (assoc-ref %build-inputs "libc"))
|
|
|
|
(libc-native (or (assoc-ref %build-inputs "libc-native")
|
|
|
|
libc)))
|
|
|
|
`(,@(if libc
|
|
|
|
(list (string-append "LDFLAGS_FOR_TARGET="
|
|
|
|
"-B" libc "/lib "
|
|
|
|
"-Wl,-dynamic-linker "
|
|
|
|
"-Wl," libc
|
|
|
|
,(glibc-dynamic-linker)))
|
|
|
|
'())
|
|
|
|
|
|
|
|
;; Native programs like 'genhooks' also need that right.
|
|
|
|
,(string-append "LDFLAGS="
|
|
|
|
"-Wl,-rpath=" libc-native "/lib "
|
|
|
|
"-Wl,-dynamic-linker "
|
|
|
|
"-Wl," libc-native ,(glibc-dynamic-linker))
|
|
|
|
,(string-append "BOOT_CFLAGS=-O2 "
|
|
|
|
,(if stripped? "-g0" "-g")))))
|
2013-06-26 16:51:39 +02:00
|
|
|
|
|
|
|
#:tests? #f
|
2015-04-07 21:24:37 +02:00
|
|
|
|
2013-06-26 16:51:39 +02:00
|
|
|
#:phases
|
2018-02-19 22:51:08 +01:00
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'pre-configure
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(let ((libdir ,(libdir))
|
|
|
|
(libc (assoc-ref inputs "libc")))
|
|
|
|
(when libc
|
|
|
|
;; The following is not performed for `--without-headers'
|
|
|
|
;; cross-compiler builds.
|
|
|
|
|
|
|
|
;; Join multi-line definitions of GLIBC_DYNAMIC_LINKER* into a
|
|
|
|
;; single line, to allow the next step to work properly.
|
|
|
|
(for-each
|
|
|
|
(lambda (x)
|
|
|
|
(substitute* (find-files "gcc/config"
|
|
|
|
"^(linux|gnu|sysv4)(64|-elf|-eabi)?\\.h$")
|
|
|
|
(("(#define (GLIBC|GNU_USER)_DYNAMIC_LINKER.*)\\\\\n$" _ line)
|
|
|
|
line)))
|
|
|
|
'(1 2 3))
|
|
|
|
|
|
|
|
;; Fix the dynamic linker's file name.
|
|
|
|
(substitute* (find-files "gcc/config"
|
|
|
|
"^(linux|gnu|sysv4)(64|-elf|-eabi)?\\.h$")
|
|
|
|
(("#define (GLIBC|GNU_USER)_DYNAMIC_LINKER([^ \t]*).*$"
|
|
|
|
_ gnu-user suffix)
|
|
|
|
(format #f "#define ~a_DYNAMIC_LINKER~a \"~a\"~%"
|
|
|
|
gnu-user suffix
|
|
|
|
(string-append libc ,(glibc-dynamic-linker)))))
|
|
|
|
|
|
|
|
;; Tell where to find libstdc++, libc, and `?crt*.o', except
|
|
|
|
;; `crt{begin,end}.o', which come with GCC.
|
|
|
|
(substitute* (find-files "gcc/config"
|
|
|
|
"^gnu-user.*\\.h$")
|
|
|
|
(("#define GNU_USER_TARGET_LIB_SPEC (.*)$" _ suffix)
|
|
|
|
;; Help libgcc_s.so be found (see also below.) Always use
|
|
|
|
;; '-lgcc_s' so that libgcc_s.so is always found by those
|
|
|
|
;; programs that use 'pthread_cancel' (glibc dlopens
|
|
|
|
;; libgcc_s.so when pthread_cancel support is needed, but
|
|
|
|
;; having it in the application's RUNPATH isn't enough; see
|
|
|
|
;; <http://sourceware.org/ml/libc-help/2013-11/msg00023.html>.)
|
|
|
|
;;
|
|
|
|
;; NOTE: The '-lgcc_s' added below needs to be removed in a
|
|
|
|
;; later phase of %gcc-static. If you change the string
|
|
|
|
;; below, make sure to update the relevant code in
|
|
|
|
;; %gcc-static package as needed.
|
|
|
|
(format #f "#define GNU_USER_TARGET_LIB_SPEC \
|
2015-06-09 21:39:10 +02:00
|
|
|
\"-L~a/lib %{!static:-rpath=~a/lib %{!static-libgcc:-rpath=~a/lib -lgcc_s}} \" ~a"
|
2018-02-19 22:51:08 +01:00
|
|
|
libc libc libdir suffix))
|
|
|
|
(("#define GNU_USER_TARGET_STARTFILE_SPEC.*$" line)
|
|
|
|
(format #f "#define STANDARD_STARTFILE_PREFIX_1 \"~a/lib\"
|
2013-03-27 15:13:25 +01:00
|
|
|
#define STANDARD_STARTFILE_PREFIX_2 \"\"
|
2013-11-15 00:10:10 +01:00
|
|
|
~a"
|
2018-02-19 22:51:08 +01:00
|
|
|
libc line)))
|
|
|
|
|
|
|
|
;; The rs6000 (a.k.a. powerpc) config in GCC does not use
|
|
|
|
;; GNU_USER_* defines. Do the above for this case.
|
|
|
|
(substitute*
|
|
|
|
"gcc/config/rs6000/sysv4.h"
|
|
|
|
(("#define LIB_LINUX_SPEC (.*)$" _ suffix)
|
|
|
|
(format #f "#define LIB_LINUX_SPEC \
|
2017-01-04 23:47:24 +01:00
|
|
|
\"-L~a/lib %{!static:-rpath=~a/lib %{!static-libgcc:-rpath=~a/lib -lgcc_s}} \" ~a"
|
2018-02-19 22:51:08 +01:00
|
|
|
libc libc libdir suffix))
|
|
|
|
(("#define STARTFILE_LINUX_SPEC.*$" line)
|
|
|
|
(format #f "#define STANDARD_STARTFILE_PREFIX_1 \"~a/lib\"
|
2017-01-04 23:47:24 +01:00
|
|
|
#define STANDARD_STARTFILE_PREFIX_2 \"\"
|
|
|
|
~a"
|
2018-02-19 22:51:08 +01:00
|
|
|
libc line))))
|
|
|
|
|
|
|
|
;; Don't retain a dependency on the build-time sed.
|
|
|
|
(substitute* "fixincludes/fixincl.x"
|
|
|
|
(("static char const sed_cmd_z\\[\\] =.*;")
|
|
|
|
"static char const sed_cmd_z[] = \"sed\";"))
|
|
|
|
|
|
|
|
;; Aarch64 support didn't land in GCC until the 4.8 series.
|
|
|
|
(when (file-exists? "gcc/config/aarch64")
|
|
|
|
;; Force Aarch64 libdir to be /lib and not /lib64
|
|
|
|
(substitute* "gcc/config/aarch64/t-aarch64-linux"
|
|
|
|
(("lib64") "lib")))
|
|
|
|
|
|
|
|
(when (file-exists? "libbacktrace")
|
|
|
|
;; GCC 4.8+ comes with libbacktrace. By default it builds
|
|
|
|
;; with -Werror, which fails with a -Wcast-qual error in glibc
|
|
|
|
;; 2.21's stdlib-bsearch.h. Remove -Werror.
|
|
|
|
(substitute* "libbacktrace/configure"
|
|
|
|
(("WARN_FLAGS=(.*)-Werror" _ flags)
|
|
|
|
(string-append "WARN_FLAGS=" flags)))
|
|
|
|
|
|
|
|
(when (file-exists? "libsanitizer/libbacktrace")
|
|
|
|
;; Same in libsanitizer's bundled copy (!) found in 4.9+.
|
|
|
|
(substitute* "libsanitizer/libbacktrace/Makefile.in"
|
|
|
|
(("-Werror")
|
|
|
|
""))))
|
|
|
|
|
|
|
|
;; Add a RUNPATH to libstdc++.so so that it finds libgcc_s.
|
|
|
|
;; See <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=32354>
|
|
|
|
;; and <http://bugs.gnu.org/20358>.
|
|
|
|
(substitute* "libstdc++-v3/src/Makefile.in"
|
|
|
|
(("^OPT_LDFLAGS = ")
|
|
|
|
"OPT_LDFLAGS = -Wl,-rpath=$(libdir) "))
|
|
|
|
|
|
|
|
;; Move libstdc++*-gdb.py to the "lib" output to avoid a
|
|
|
|
;; circularity between "out" and "lib". (Note:
|
|
|
|
;; --with-python-dir is useless because it imposes $(prefix) as
|
|
|
|
;; the parent directory.)
|
|
|
|
(substitute* "libstdc++-v3/python/Makefile.in"
|
|
|
|
(("pythondir = .*$")
|
|
|
|
(string-append "pythondir = " libdir "/share"
|
|
|
|
"/gcc-$(gcc_version)/python\n")))
|
|
|
|
|
|
|
|
;; Avoid another circularity between the outputs: this #define
|
|
|
|
;; ends up in auto-host.h in the "lib" output, referring to
|
|
|
|
;; "out". (This variable is used to augment cpp's search path,
|
|
|
|
;; but there's nothing useful to look for here.)
|
|
|
|
(substitute* "gcc/config.in"
|
|
|
|
(("PREFIX_INCLUDE_DIR")
|
|
|
|
"PREFIX_INCLUDE_DIR_isnt_necessary_here"))
|
|
|
|
#t)))
|
|
|
|
|
|
|
|
(add-after 'configure 'post-configure
|
|
|
|
(lambda _
|
|
|
|
;; Don't store configure flags, to avoid retaining references to
|
|
|
|
;; build-time dependencies---e.g., `--with-ppl=/gnu/store/xxx'.
|
|
|
|
(substitute* "Makefile"
|
|
|
|
(("^TOPLEVEL_CONFIGURE_ARGUMENTS=(.*)$" _ rest)
|
|
|
|
"TOPLEVEL_CONFIGURE_ARGUMENTS=\n"))
|
|
|
|
#t)))))
|
2013-06-26 16:51:39 +02:00
|
|
|
|
|
|
|
(native-search-paths
|
2015-12-18 21:38:49 +01:00
|
|
|
;; Use the language-specific variables rather than 'CPATH' because they
|
|
|
|
;; are equivalent to '-isystem' whereas 'CPATH' is equivalent to '-I'.
|
|
|
|
;; The intent is to allow headers that are in the search path to be
|
|
|
|
;; treated as "system headers" (headers exempt from warnings) just like
|
|
|
|
;; the typical /usr/include headers on an FHS system.
|
2013-06-26 16:51:39 +02:00
|
|
|
(list (search-path-specification
|
2015-12-18 21:38:49 +01:00
|
|
|
(variable "C_INCLUDE_PATH")
|
|
|
|
(files '("include")))
|
|
|
|
(search-path-specification
|
|
|
|
(variable "CPLUS_INCLUDE_PATH")
|
packages: Add 'file-type' field to 'search-path-specification'.
Fixes <http://bugs.gnu.org/18033>.
* guix/packages.scm (<search-path-specification>): Rename 'directories'
field to 'files'. Add 'file-type'.
(search-path-specification->sexp): Honor 'file-type'.
* gnu/packages/autotools.scm, gnu/packages/bootstrap.scm,
gnu/packages/cross-base.scm, gnu/packages/games.scm,
gnu/packages/gcc.scm, gnu/packages/glib.scm,
gnu/packages/guile.scm, gnu/packages/man.scm,
gnu/packages/perl.scm, gnu/packages/pkg-config.scm,
gnu/packages/python.scm, gnu/packages/ruby.scm,
gnu/packages/xfce.scm: Change 'directories' to 'files'.
* tests/packages.scm ("search paths"): Change 'directories' field to
'files'.
* guix/scripts/environment.scm (for-each-search-path): Likewise.
2014-12-27 23:22:08 +01:00
|
|
|
(files '("include")))
|
2013-06-26 16:51:39 +02:00
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBRARY_PATH")
|
packages: Add 'file-type' field to 'search-path-specification'.
Fixes <http://bugs.gnu.org/18033>.
* guix/packages.scm (<search-path-specification>): Rename 'directories'
field to 'files'. Add 'file-type'.
(search-path-specification->sexp): Honor 'file-type'.
* gnu/packages/autotools.scm, gnu/packages/bootstrap.scm,
gnu/packages/cross-base.scm, gnu/packages/games.scm,
gnu/packages/gcc.scm, gnu/packages/glib.scm,
gnu/packages/guile.scm, gnu/packages/man.scm,
gnu/packages/perl.scm, gnu/packages/pkg-config.scm,
gnu/packages/python.scm, gnu/packages/ruby.scm,
gnu/packages/xfce.scm: Change 'directories' to 'files'.
* tests/packages.scm ("search paths"): Change 'directories' field to
'files'.
* guix/scripts/environment.scm (for-each-search-path): Likewise.
2014-12-27 23:22:08 +01:00
|
|
|
(files '("lib" "lib64")))))
|
2013-06-26 16:51:39 +02:00
|
|
|
|
|
|
|
(properties `((gcc-libc . ,(assoc-ref inputs "libc"))))
|
|
|
|
(synopsis "GNU Compiler Collection")
|
|
|
|
(description
|
Synchronize package descriptions with the Womb.
* gnu/packages/algebra.scm,
gnu/packages/aspell.scm,
gnu/packages/autotools.scm,
gnu/packages/base.scm,
gnu/packages/bash.scm,
gnu/packages/bison.scm,
gnu/packages/cdrom.scm,
gnu/packages/cflow.scm,
gnu/packages/compression.scm,
gnu/packages/cpio.scm,
gnu/packages/cppi.scm,
gnu/packages/ddrescue.scm,
gnu/packages/dejagnu.scm,
gnu/packages/ed.scm,
gnu/packages/emacs.scm,
gnu/packages/fdisk.scm,
gnu/packages/freeipmi.scm,
gnu/packages/gawk.scm,
gnu/packages/gcal.scm,
gnu/packages/gcc.scm,
gnu/packages/gdb.scm,
gnu/packages/gdbm.scm,
gnu/packages/gettext.scm,
gnu/packages/ghostscript.scm,
gnu/packages/global.scm,
gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm,
gnu/packages/gperf.scm,
gnu/packages/gprolog.scm,
gnu/packages/groff.scm,
gnu/packages/grub.scm,
gnu/packages/gsasl.scm,
gnu/packages/guile.scm,
gnu/packages/gv.scm,
gnu/packages/help2man.scm,
gnu/packages/idutils.scm,
gnu/packages/indent.scm,
gnu/packages/less.scm,
gnu/packages/libidn.scm,
gnu/packages/libsigsegv.scm,
gnu/packages/libunistring.scm,
gnu/packages/lightning.scm,
gnu/packages/linux.scm,
gnu/packages/lsh.scm,
gnu/packages/m4.scm,
gnu/packages/mail.scm,
gnu/packages/maths.scm,
gnu/packages/multiprecision.scm,
gnu/packages/nano.scm,
gnu/packages/ncurses.scm,
gnu/packages/nettle.scm,
gnu/packages/ocrad.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/parted.scm,
gnu/packages/plotutils.scm,
gnu/packages/pth.scm,
gnu/packages/readline.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/shishi.scm,
gnu/packages/smalltalk.scm,
gnu/packages/system.scm,
gnu/packages/texinfo.scm,
gnu/packages/time.scm,
gnu/packages/unrtf.scm,
gnu/packages/version-control.scm,
gnu/packages/wdiff.scm,
gnu/packages/wget.scm,
gnu/packages/which.scm,
gnu/packages/xnee.scm,
gnu/packages/zile.scm: Change value of the 'description' field to that
of the Womb.
2013-10-09 16:14:23 +02:00
|
|
|
"GCC is the GNU Compiler Collection. It provides compiler front-ends
|
|
|
|
for several languages, including C, C++, Objective-C, Fortran, Java, Ada, and
|
2013-12-01 22:33:23 +01:00
|
|
|
Go. It also includes runtime support libraries for these languages.")
|
2013-06-26 16:51:39 +02:00
|
|
|
(license gpl3+)
|
2017-08-02 18:14:06 +02:00
|
|
|
(supported-systems (delete "aarch64-linux" %supported-systems))
|
2017-03-30 00:48:16 +02:00
|
|
|
(home-page "https://gcc.gnu.org/"))))
|
2013-03-27 15:37:27 +01:00
|
|
|
|
2013-04-26 22:51:07 +02:00
|
|
|
(define-public gcc-4.8
|
|
|
|
(package (inherit gcc-4.7)
|
2015-06-29 10:37:24 +02:00
|
|
|
(version "4.8.5")
|
2013-04-26 22:51:07 +02:00
|
|
|
(source (origin
|
2015-04-30 13:31:59 +02:00
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/gcc/gcc-"
|
|
|
|
version "/gcc-" version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2015-06-29 10:37:24 +02:00
|
|
|
"08yggr18v373a1ihj0rg2vd6psnic42b518xcgp3r9k81xz1xyr2"))
|
2017-10-01 15:27:31 +02:00
|
|
|
(patches (search-patches "gcc-arm-link-spec-fix.patch"
|
2018-08-19 18:20:05 +02:00
|
|
|
"gcc-4.8-libsanitizer-fix.patch"
|
2017-06-08 00:26:10 +02:00
|
|
|
"gcc-asan-missing-include.patch"
|
2018-01-02 09:33:02 +01:00
|
|
|
"gcc-fix-texi2pod.patch"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
;; This is required for building with glibc-2.26.
|
|
|
|
;; https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81712
|
|
|
|
(snippet
|
gnu: All snippets report errors using exceptions, else return #t.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm,
gnu/packages/bioinformatics.scm, gnu/packages/cdrom.scm,
gnu/packages/chez.scm, gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/cross-base.scm, gnu/packages/crypto.scm, gnu/packages/cups.scm,
gnu/packages/databases.scm, gnu/packages/dns.scm, gnu/packages/emacs.scm,
gnu/packages/emulators.scm, gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm, gnu/packages/fpga.scm,
gnu/packages/freedesktop.scm, gnu/packages/ftp.scm, gnu/packages/games.scm,
gnu/packages/gcc.scm, gnu/packages/geo.scm, gnu/packages/ghostscript.scm,
gnu/packages/gl.scm, gnu/packages/glib.scm, gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm, gnu/packages/graphics.scm, gnu/packages/gtk.scm,
gnu/packages/guile.scm, gnu/packages/irc.scm, gnu/packages/java.scm,
gnu/packages/kerberos.scm, gnu/packages/linux.scm, gnu/packages/lisp.scm,
gnu/packages/lxde.scm, gnu/packages/machine-learning.scm,
gnu/packages/mail.scm, gnu/packages/maths.scm, gnu/packages/messaging.scm,
gnu/packages/monitoring.scm, gnu/packages/mp3.scm, gnu/packages/music.scm,
gnu/packages/netpbm.scm, gnu/packages/networking.scm, gnu/packages/node.scm,
gnu/packages/nvi.scm, gnu/packages/ocaml.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/php.scm, gnu/packages/plotutils.scm,
gnu/packages/pretty-print.scm, gnu/packages/profiling.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python-crypto.scm,
gnu/packages/python.scm, gnu/packages/qt.scm, gnu/packages/robotics.scm,
gnu/packages/sawfish.scm, gnu/packages/scanner.scm, gnu/packages/scheme.scm,
gnu/packages/scribus.scm, gnu/packages/sdl.scm,
gnu/packages/serialization.scm, gnu/packages/shells.scm,
gnu/packages/slang.scm, gnu/packages/smalltalk.scm, gnu/packages/ssh.scm,
gnu/packages/sync.scm, gnu/packages/syncthing.scm, gnu/packages/tbb.scm,
gnu/packages/terminals.scm, gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm, gnu/packages/textutils.scm,
gnu/packages/tls.scm, gnu/packages/unrtf.scm,
gnu/packages/version-control.scm, gnu/packages/video.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm, gnu/packages/xdisorg.scm, gnu/packages/xorg.scm:
In all snippets, report errors using exceptions, or else return #t.
2018-03-16 12:47:34 +01:00
|
|
|
'(begin
|
|
|
|
(for-each
|
|
|
|
(lambda (dir)
|
|
|
|
(substitute* (string-append "libgcc/config/"
|
|
|
|
dir "/linux-unwind.h")
|
|
|
|
(("struct ucontext") "ucontext_t")))
|
|
|
|
'("aarch64" "alpha" "bfin" "i386" "m68k"
|
|
|
|
"pa" "sh" "tilepro" "xtensa"))
|
|
|
|
#t))))
|
2017-09-12 19:57:20 +02:00
|
|
|
(supported-systems %supported-systems)
|
|
|
|
(inputs
|
2017-09-12 20:12:46 +02:00
|
|
|
`(("isl" ,isl-0.11)
|
2017-09-12 19:57:20 +02:00
|
|
|
("cloog" ,cloog)
|
|
|
|
,@(package-inputs gcc-4.7)))))
|
2013-04-26 22:51:07 +02:00
|
|
|
|
2014-04-22 17:44:45 +02:00
|
|
|
(define-public gcc-4.9
|
2017-09-12 19:55:54 +02:00
|
|
|
(package (inherit gcc-4.8)
|
2016-08-14 09:14:14 +02:00
|
|
|
(version "4.9.4")
|
2014-04-22 17:44:45 +02:00
|
|
|
(source (origin
|
2015-04-30 13:31:59 +02:00
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/gcc/gcc-"
|
|
|
|
version "/gcc-" version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-08-14 09:14:14 +02:00
|
|
|
"14l06m7nvcvb0igkbip58x59w3nq6315k6jcz3wr9ch1rn9d44bc"))
|
2018-02-17 23:34:47 +01:00
|
|
|
(patches (search-patches "gcc-4.9-libsanitizer-fix.patch"
|
2018-08-31 17:40:40 +02:00
|
|
|
"gcc-4.9-libsanitizer-ustat.patch"
|
2018-02-17 23:34:47 +01:00
|
|
|
"gcc-arm-bug-71399.patch"
|
2018-01-02 22:47:12 +01:00
|
|
|
"gcc-asan-missing-include.patch"
|
2017-10-01 15:27:31 +02:00
|
|
|
"gcc-libvtv-runpath.patch"
|
2018-01-17 21:08:01 +01:00
|
|
|
"gcc-fix-texi2pod.patch"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
;; This is required for building with glibc-2.26.
|
|
|
|
;; https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81712
|
|
|
|
(snippet
|
gnu: All snippets report errors using exceptions, else return #t.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm,
gnu/packages/bioinformatics.scm, gnu/packages/cdrom.scm,
gnu/packages/chez.scm, gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/cross-base.scm, gnu/packages/crypto.scm, gnu/packages/cups.scm,
gnu/packages/databases.scm, gnu/packages/dns.scm, gnu/packages/emacs.scm,
gnu/packages/emulators.scm, gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm, gnu/packages/fpga.scm,
gnu/packages/freedesktop.scm, gnu/packages/ftp.scm, gnu/packages/games.scm,
gnu/packages/gcc.scm, gnu/packages/geo.scm, gnu/packages/ghostscript.scm,
gnu/packages/gl.scm, gnu/packages/glib.scm, gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm, gnu/packages/graphics.scm, gnu/packages/gtk.scm,
gnu/packages/guile.scm, gnu/packages/irc.scm, gnu/packages/java.scm,
gnu/packages/kerberos.scm, gnu/packages/linux.scm, gnu/packages/lisp.scm,
gnu/packages/lxde.scm, gnu/packages/machine-learning.scm,
gnu/packages/mail.scm, gnu/packages/maths.scm, gnu/packages/messaging.scm,
gnu/packages/monitoring.scm, gnu/packages/mp3.scm, gnu/packages/music.scm,
gnu/packages/netpbm.scm, gnu/packages/networking.scm, gnu/packages/node.scm,
gnu/packages/nvi.scm, gnu/packages/ocaml.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/php.scm, gnu/packages/plotutils.scm,
gnu/packages/pretty-print.scm, gnu/packages/profiling.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python-crypto.scm,
gnu/packages/python.scm, gnu/packages/qt.scm, gnu/packages/robotics.scm,
gnu/packages/sawfish.scm, gnu/packages/scanner.scm, gnu/packages/scheme.scm,
gnu/packages/scribus.scm, gnu/packages/sdl.scm,
gnu/packages/serialization.scm, gnu/packages/shells.scm,
gnu/packages/slang.scm, gnu/packages/smalltalk.scm, gnu/packages/ssh.scm,
gnu/packages/sync.scm, gnu/packages/syncthing.scm, gnu/packages/tbb.scm,
gnu/packages/terminals.scm, gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm, gnu/packages/textutils.scm,
gnu/packages/tls.scm, gnu/packages/unrtf.scm,
gnu/packages/version-control.scm, gnu/packages/video.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm, gnu/packages/xdisorg.scm, gnu/packages/xorg.scm:
In all snippets, report errors using exceptions, or else return #t.
2018-03-16 12:47:34 +01:00
|
|
|
'(begin
|
|
|
|
(for-each
|
|
|
|
(lambda (dir)
|
|
|
|
(substitute* (string-append "libgcc/config/"
|
|
|
|
dir "/linux-unwind.h")
|
|
|
|
(("struct ucontext") "ucontext_t")))
|
|
|
|
'("aarch64" "alpha" "bfin" "i386" "m68k" "nios2"
|
|
|
|
"pa" "sh" "tilepro" "xtensa"))
|
|
|
|
#t))))
|
2017-10-01 15:27:31 +02:00
|
|
|
;; Override inherited texinfo-5 with latest version.
|
|
|
|
(native-inputs `(("perl" ,perl) ;for manpages
|
|
|
|
("texinfo" ,texinfo)))))
|
2014-04-22 17:44:45 +02:00
|
|
|
|
2015-07-20 03:11:56 +02:00
|
|
|
(define-public gcc-5
|
2016-08-04 18:54:47 +02:00
|
|
|
;; Note: GCC >= 5 ships with .info files but 'make install' fails to install
|
|
|
|
;; them in a VPATH build.
|
2015-04-30 13:31:59 +02:00
|
|
|
(package (inherit gcc-4.9)
|
2017-10-12 21:36:25 +02:00
|
|
|
(version "5.5.0")
|
2015-04-23 07:05:36 +02:00
|
|
|
(source (origin
|
2015-04-30 13:31:59 +02:00
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/gcc/gcc-"
|
2017-10-12 21:36:25 +02:00
|
|
|
version "/gcc-" version ".tar.xz"))
|
2015-04-30 13:31:59 +02:00
|
|
|
(sha256
|
|
|
|
(base32
|
2017-10-12 21:36:25 +02:00
|
|
|
"11zd1hgzkli3b2v70qsm2hyqppngd4616qc96lmm9zl2kl9yl32k"))
|
2016-12-12 01:01:13 +01:00
|
|
|
(patches (search-patches "gcc-arm-bug-71399.patch"
|
2018-08-01 23:19:28 +02:00
|
|
|
"gcc-libsanitizer-ustat.patch"
|
2016-12-12 01:01:13 +01:00
|
|
|
"gcc-strmov-store-file-names.patch"
|
2017-01-21 12:31:49 +01:00
|
|
|
"gcc-5.0-libvtv-runpath.patch"
|
|
|
|
"gcc-5-source-date-epoch-1.patch"
|
2017-10-01 15:27:31 +02:00
|
|
|
"gcc-5-source-date-epoch-2.patch"
|
2017-12-20 22:21:16 +01:00
|
|
|
"gcc-fix-texi2pod.patch"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
;; Fix 'libcc1/configure' error when cross-compiling GCC.
|
|
|
|
;; Without that, 'libcc1/configure' wrongfully determines that
|
|
|
|
;; '-rdynamic' support is missing because $gcc_cv_objdump is
|
|
|
|
;; empty:
|
|
|
|
;;
|
|
|
|
;; https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67590
|
|
|
|
;; http://cgit.openembedded.org/openembedded-core/commit/?id=f6e47aa9b12f9ab61530c40e0343f451699d9077
|
gnu: All snippets report errors using exceptions, else return #t.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm,
gnu/packages/bioinformatics.scm, gnu/packages/cdrom.scm,
gnu/packages/chez.scm, gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/cross-base.scm, gnu/packages/crypto.scm, gnu/packages/cups.scm,
gnu/packages/databases.scm, gnu/packages/dns.scm, gnu/packages/emacs.scm,
gnu/packages/emulators.scm, gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm, gnu/packages/fpga.scm,
gnu/packages/freedesktop.scm, gnu/packages/ftp.scm, gnu/packages/games.scm,
gnu/packages/gcc.scm, gnu/packages/geo.scm, gnu/packages/ghostscript.scm,
gnu/packages/gl.scm, gnu/packages/glib.scm, gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm, gnu/packages/graphics.scm, gnu/packages/gtk.scm,
gnu/packages/guile.scm, gnu/packages/irc.scm, gnu/packages/java.scm,
gnu/packages/kerberos.scm, gnu/packages/linux.scm, gnu/packages/lisp.scm,
gnu/packages/lxde.scm, gnu/packages/machine-learning.scm,
gnu/packages/mail.scm, gnu/packages/maths.scm, gnu/packages/messaging.scm,
gnu/packages/monitoring.scm, gnu/packages/mp3.scm, gnu/packages/music.scm,
gnu/packages/netpbm.scm, gnu/packages/networking.scm, gnu/packages/node.scm,
gnu/packages/nvi.scm, gnu/packages/ocaml.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/php.scm, gnu/packages/plotutils.scm,
gnu/packages/pretty-print.scm, gnu/packages/profiling.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python-crypto.scm,
gnu/packages/python.scm, gnu/packages/qt.scm, gnu/packages/robotics.scm,
gnu/packages/sawfish.scm, gnu/packages/scanner.scm, gnu/packages/scheme.scm,
gnu/packages/scribus.scm, gnu/packages/sdl.scm,
gnu/packages/serialization.scm, gnu/packages/shells.scm,
gnu/packages/slang.scm, gnu/packages/smalltalk.scm, gnu/packages/ssh.scm,
gnu/packages/sync.scm, gnu/packages/syncthing.scm, gnu/packages/tbb.scm,
gnu/packages/terminals.scm, gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm, gnu/packages/textutils.scm,
gnu/packages/tls.scm, gnu/packages/unrtf.scm,
gnu/packages/version-control.scm, gnu/packages/video.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm, gnu/packages/xdisorg.scm, gnu/packages/xorg.scm:
In all snippets, report errors using exceptions, or else return #t.
2018-03-16 12:47:34 +01:00
|
|
|
'(begin
|
|
|
|
(substitute* "libcc1/configure"
|
|
|
|
(("\\$gcc_cv_objdump -T")
|
|
|
|
"$OBJDUMP_FOR_TARGET -T"))
|
|
|
|
#t))))
|
2017-10-02 11:37:29 +02:00
|
|
|
(inputs
|
2018-08-10 17:00:27 +02:00
|
|
|
`(;; GCC5 needs <isl/band.h> which is removed in later versions.
|
|
|
|
("isl" ,isl-0.18)
|
2017-10-02 11:37:29 +02:00
|
|
|
,@(package-inputs gcc-4.7)))))
|
2015-04-23 07:05:36 +02:00
|
|
|
|
2016-05-03 17:34:54 +02:00
|
|
|
(define-public gcc-6
|
|
|
|
(package
|
|
|
|
(inherit gcc-5)
|
2018-12-08 00:43:36 +01:00
|
|
|
(version "6.5.0")
|
2016-05-03 17:34:54 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/gcc/gcc-"
|
2017-07-05 07:30:37 +02:00
|
|
|
version "/gcc-" version ".tar.xz"))
|
2016-05-03 17:34:54 +02:00
|
|
|
(sha256
|
|
|
|
(base32
|
2018-12-08 00:43:36 +01:00
|
|
|
"0i89fksfp6wr1xg9l8296aslcymv2idn60ip31wr9s4pwin7kwby"))
|
|
|
|
(patches (search-patches "gcc-strmov-store-file-names.patch"
|
2017-08-31 18:13:08 +02:00
|
|
|
"gcc-6-source-date-epoch-1.patch"
|
|
|
|
"gcc-6-source-date-epoch-2.patch"
|
2018-12-08 00:43:36 +01:00
|
|
|
"gcc-5.0-libvtv-runpath.patch"))))
|
2017-09-12 19:57:20 +02:00
|
|
|
(inputs
|
|
|
|
`(("isl" ,isl)
|
2018-05-07 12:02:23 +02:00
|
|
|
,@(package-inputs gcc-4.7)))
|
|
|
|
|
|
|
|
(native-search-paths
|
|
|
|
;; We have to use 'CPATH' for GCC > 5, not 'C_INCLUDE_PATH' & co., due to
|
|
|
|
;; <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70129>.
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "CPATH")
|
|
|
|
(files '("include")))
|
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBRARY_PATH")
|
|
|
|
(files '("lib" "lib64")))))))
|
2017-09-12 19:57:20 +02:00
|
|
|
|
2017-05-03 15:35:37 +02:00
|
|
|
(define-public gcc-7
|
|
|
|
(package
|
|
|
|
(inherit gcc-6)
|
2018-12-08 00:44:44 +01:00
|
|
|
(version "7.4.0")
|
2017-05-03 15:35:37 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/gcc/gcc-"
|
2017-08-14 21:29:47 +02:00
|
|
|
version "/gcc-" version ".tar.xz"))
|
2017-05-03 15:35:37 +02:00
|
|
|
(sha256
|
|
|
|
(base32
|
2018-12-08 00:44:44 +01:00
|
|
|
"0lgy170b0pp60j9cczqkmaqyjjb584vfamj4c30swd7k0j6y5pgd"))
|
2017-05-03 15:35:37 +02:00
|
|
|
(patches (search-patches "gcc-strmov-store-file-names.patch"
|
2017-09-12 20:13:39 +02:00
|
|
|
"gcc-5.0-libvtv-runpath.patch"))))
|
|
|
|
(description
|
|
|
|
"GCC is the GNU Compiler Collection. It provides compiler front-ends
|
|
|
|
for several languages, including C, C++, Objective-C, Fortran, Ada, and Go.
|
|
|
|
It also includes runtime support libraries for these languages.")))
|
2016-05-03 17:34:54 +02:00
|
|
|
|
2018-06-26 01:52:18 +02:00
|
|
|
(define-public gcc-8
|
|
|
|
(package
|
|
|
|
(inherit gcc-7)
|
2019-02-25 13:26:56 +01:00
|
|
|
(version "8.3.0")
|
2018-06-26 01:52:18 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/gcc/gcc-"
|
|
|
|
version "/gcc-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2019-02-25 13:26:56 +01:00
|
|
|
"0b3xv411xhlnjmin2979nxcbnidgvzqdf4nbhix99x60dkzavfk4"))
|
2018-06-26 01:52:18 +02:00
|
|
|
(patches (search-patches "gcc-8-strmov-store-file-names.patch"
|
|
|
|
"gcc-5.0-libvtv-runpath.patch"))))))
|
|
|
|
|
2016-03-16 23:02:49 +01:00
|
|
|
;; Note: When changing the default gcc version, update
|
2017-03-23 15:37:24 +01:00
|
|
|
;; the gcc-toolchain-* definitions and the gfortran definition
|
|
|
|
;; accordingly.
|
2016-12-12 01:01:13 +01:00
|
|
|
(define-public gcc gcc-5)
|
2015-06-25 17:52:10 +02:00
|
|
|
|
2015-06-19 11:34:16 +02:00
|
|
|
(define-public (make-libstdc++ gcc)
|
|
|
|
"Return a libstdc++ package based on GCC. The primary use case is when
|
|
|
|
using compilers other than GCC."
|
|
|
|
(package
|
|
|
|
(inherit gcc)
|
|
|
|
(name "libstdc++")
|
|
|
|
(arguments
|
|
|
|
`(#:out-of-source? #t
|
|
|
|
#:phases (alist-cons-before
|
|
|
|
'configure 'chdir
|
|
|
|
(lambda _
|
2018-03-16 13:59:55 +01:00
|
|
|
(chdir "libstdc++-v3")
|
|
|
|
#t)
|
2015-06-19 11:34:16 +02:00
|
|
|
%standard-phases)
|
|
|
|
#:configure-flags `("--disable-libstdcxx-pch"
|
|
|
|
,(string-append "--with-gxx-include-dir="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/include"))))
|
|
|
|
(outputs '("out" "debug"))
|
|
|
|
(inputs '())
|
|
|
|
(native-inputs '())
|
|
|
|
(propagated-inputs '())
|
|
|
|
(synopsis "GNU C++ standard library")))
|
|
|
|
|
|
|
|
(define-public libstdc++-4.9
|
|
|
|
(make-libstdc++ gcc-4.9))
|
|
|
|
|
2015-06-27 11:47:04 +02:00
|
|
|
(define (make-libiberty gcc)
|
|
|
|
"Return a libiberty package based on GCC."
|
|
|
|
(package
|
|
|
|
(inherit gcc)
|
|
|
|
(name "libiberty")
|
|
|
|
(arguments
|
|
|
|
`(#:out-of-source? #t
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'chdir
|
|
|
|
(lambda _
|
|
|
|
(chdir "libiberty")
|
|
|
|
#t))
|
|
|
|
(replace
|
|
|
|
'install
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(lib (string-append out "/lib/"))
|
|
|
|
(include (string-append out "/include/")))
|
|
|
|
(mkdir-p lib)
|
|
|
|
(mkdir-p include)
|
|
|
|
(copy-file "libiberty.a"
|
|
|
|
(string-append lib "libiberty.a"))
|
|
|
|
(copy-file "../include/libiberty.h"
|
|
|
|
(string-append include "libiberty.h"))
|
|
|
|
#t))))))
|
|
|
|
(inputs '())
|
|
|
|
(outputs '("out"))
|
|
|
|
(native-inputs '())
|
|
|
|
(propagated-inputs '())
|
|
|
|
(synopsis "Collection of subroutines used by various GNU programs")))
|
|
|
|
|
|
|
|
(define-public libiberty
|
|
|
|
(make-libiberty gcc))
|
|
|
|
|
2015-12-18 21:38:49 +01:00
|
|
|
(define* (custom-gcc gcc name languages
|
|
|
|
#:optional
|
|
|
|
(search-paths (package-native-search-paths gcc))
|
|
|
|
#:key (separate-lib-output? #t))
|
|
|
|
"Return a custom version of GCC that supports LANGUAGES. Use SEARCH-PATHS
|
|
|
|
as the 'native-search-paths' field."
|
2013-11-01 21:34:24 +01:00
|
|
|
(package (inherit gcc)
|
|
|
|
(name name)
|
2014-08-01 00:19:22 +02:00
|
|
|
(outputs (if separate-lib-output?
|
|
|
|
(package-outputs gcc)
|
|
|
|
(delete "lib" (package-outputs gcc))))
|
2015-12-18 21:38:49 +01:00
|
|
|
(native-search-paths search-paths)
|
2013-11-01 21:34:24 +01:00
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments `(#:modules ((guix build gnu-build-system)
|
|
|
|
(guix build utils)
|
|
|
|
(ice-9 regex)
|
|
|
|
(srfi srfi-1)
|
|
|
|
(srfi srfi-26))
|
|
|
|
,@(package-arguments gcc))
|
|
|
|
((#:configure-flags flags)
|
|
|
|
`(cons (string-append "--enable-languages="
|
|
|
|
,(string-join languages ","))
|
|
|
|
(remove (cut string-match "--enable-languages.*" <>)
|
2016-03-10 07:05:08 +01:00
|
|
|
,flags)))
|
|
|
|
((#:phases phases)
|
|
|
|
`(modify-phases ,phases
|
|
|
|
(add-after 'install 'remove-broken-or-conflicting-files
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(for-each delete-file
|
|
|
|
(find-files (string-append (assoc-ref outputs "out") "/bin")
|
2018-06-14 01:29:08 +02:00
|
|
|
".*(c\\+\\+|cpp|g\\+\\+|gcov|gcc|gcc-.*)"))
|
2016-03-10 07:05:08 +01:00
|
|
|
#t))))))))
|
2013-11-01 21:34:24 +01:00
|
|
|
|
2015-12-18 21:38:49 +01:00
|
|
|
(define %generic-search-paths
|
|
|
|
;; This is the language-neutral search path for GCC. Entries in $CPATH are
|
|
|
|
;; not considered "system headers", which means GCC can raise warnings for
|
|
|
|
;; issues in those headers. 'CPATH' is the only one that works for
|
|
|
|
;; front-ends not in the C family.
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "CPATH")
|
|
|
|
(files '("include")))
|
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBRARY_PATH")
|
|
|
|
(files '("lib" "lib64")))))
|
|
|
|
|
2013-11-01 21:34:24 +01:00
|
|
|
(define-public gfortran-4.8
|
2015-12-18 21:38:49 +01:00
|
|
|
(custom-gcc gcc-4.8 "gfortran" '("fortran")
|
|
|
|
%generic-search-paths))
|
2013-11-01 21:34:24 +01:00
|
|
|
|
2015-06-24 11:36:18 +02:00
|
|
|
(define-public gfortran-4.9
|
2015-12-18 21:38:49 +01:00
|
|
|
(custom-gcc gcc-4.9 "gfortran" '("fortran")
|
|
|
|
%generic-search-paths))
|
2015-06-24 11:36:18 +02:00
|
|
|
|
2017-03-23 16:34:17 +01:00
|
|
|
(define-public gfortran-5
|
|
|
|
(custom-gcc gcc-5 "gfortran" '("fortran")
|
|
|
|
%generic-search-paths))
|
|
|
|
|
2017-05-03 06:33:35 +02:00
|
|
|
(define-public gfortran-6
|
|
|
|
(custom-gcc gcc-6 "gfortran" '("fortran")
|
|
|
|
%generic-search-paths))
|
|
|
|
|
2017-05-03 21:13:16 +02:00
|
|
|
(define-public gfortran-7
|
|
|
|
(custom-gcc gcc-7 "gfortran" '("fortran")
|
|
|
|
%generic-search-paths))
|
|
|
|
|
2018-09-02 16:27:56 +02:00
|
|
|
(define-public gfortran-8
|
|
|
|
(custom-gcc gcc-8 "gfortran" '("fortran")
|
|
|
|
%generic-search-paths))
|
|
|
|
|
2015-06-25 17:52:10 +02:00
|
|
|
(define-public gfortran
|
2017-01-02 14:42:56 +01:00
|
|
|
;; Note: Update this when GCC changes! We cannot use
|
|
|
|
;; (custom-gcc gcc "fortran" …) because that would lead to a package object
|
2017-03-23 15:37:24 +01:00
|
|
|
;; that is not 'eq?' with GFORTRAN-5, and thus 'fold-packages' would
|
|
|
|
;; report two gfortran@5 that are in fact identical.
|
|
|
|
gfortran-5)
|
2015-06-25 17:52:10 +02:00
|
|
|
|
2015-12-28 05:53:01 +01:00
|
|
|
(define-public gccgo-4.9
|
|
|
|
(custom-gcc gcc-4.9 "gccgo" '("go")
|
2015-12-18 21:38:49 +01:00
|
|
|
%generic-search-paths
|
2014-08-01 00:19:22 +02:00
|
|
|
;; Suppress the separate "lib" output, because otherwise the
|
|
|
|
;; "lib" and "out" outputs would refer to each other, creating
|
|
|
|
;; a cyclic dependency. <http://debbugs.gnu.org/18101>
|
|
|
|
#:separate-lib-output? #f))
|
2013-11-01 21:34:24 +01:00
|
|
|
|
|
|
|
(define-public gcc-objc-4.8
|
2015-12-18 21:38:49 +01:00
|
|
|
(custom-gcc gcc-4.8 "gcc-objc" '("objc")
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "OBJC_INCLUDE_PATH")
|
|
|
|
(files '("include")))
|
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBRARY_PATH")
|
|
|
|
(files '("lib" "lib64"))))))
|
2013-11-01 21:34:24 +01:00
|
|
|
|
2016-05-16 20:10:55 +02:00
|
|
|
(define-public gcc-objc-4.9
|
|
|
|
(custom-gcc gcc-4.9 "gcc-objc" '("objc")
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "OBJC_INCLUDE_PATH")
|
|
|
|
(files '("include")))
|
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBRARY_PATH")
|
|
|
|
(files '("lib" "lib64"))))))
|
|
|
|
|
2017-09-14 10:09:05 +02:00
|
|
|
(define-public gcc-objc-5
|
|
|
|
(custom-gcc gcc-5 "gcc-objc" '("objc")
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "OBJC_INCLUDE_PATH")
|
|
|
|
(files '("include")))
|
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBRARY_PATH")
|
|
|
|
(files '("lib" "lib64"))))))
|
|
|
|
|
2017-09-14 10:11:27 +02:00
|
|
|
(define-public gcc-objc-6
|
|
|
|
(custom-gcc gcc-6 "gcc-objc" '("objc")
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "OBJC_INCLUDE_PATH")
|
|
|
|
(files '("include")))
|
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBRARY_PATH")
|
|
|
|
(files '("lib" "lib64"))))))
|
2017-09-14 10:13:20 +02:00
|
|
|
|
|
|
|
(define-public gcc-objc-7
|
|
|
|
(custom-gcc gcc-7 "gcc-objc" '("objc")
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "OBJC_INCLUDE_PATH")
|
|
|
|
(files '("include")))
|
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBRARY_PATH")
|
|
|
|
(files '("lib" "lib64"))))))
|
2017-09-14 10:11:27 +02:00
|
|
|
|
2018-09-02 16:27:56 +02:00
|
|
|
(define-public gcc-objc-8
|
|
|
|
(custom-gcc gcc-8 "gcc-objc" '("objc")
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "OBJC_INCLUDE_PATH")
|
|
|
|
(files '("include")))
|
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBRARY_PATH")
|
|
|
|
(files '("lib" "lib64"))))))
|
|
|
|
|
2017-09-14 10:16:45 +02:00
|
|
|
(define-public gcc-objc gcc-objc-5)
|
2016-05-16 20:11:19 +02:00
|
|
|
|
2013-11-01 21:34:24 +01:00
|
|
|
(define-public gcc-objc++-4.8
|
2015-12-18 21:38:49 +01:00
|
|
|
(custom-gcc gcc-4.8 "gcc-objc++" '("obj-c++")
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "OBJCPLUS_INCLUDE_PATH")
|
|
|
|
(files '("include")))
|
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBRARY_PATH")
|
|
|
|
(files '("lib" "lib64"))))))
|
2013-11-01 21:34:24 +01:00
|
|
|
|
2016-05-16 20:11:42 +02:00
|
|
|
(define-public gcc-objc++-4.9
|
|
|
|
(custom-gcc gcc-4.9 "gcc-objc++" '("obj-c++")
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "OBJCPLUS_INCLUDE_PATH")
|
|
|
|
(files '("include")))
|
2015-12-18 21:38:49 +01:00
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBRARY_PATH")
|
|
|
|
(files '("lib" "lib64"))))))
|
2013-11-01 21:34:24 +01:00
|
|
|
|
2017-09-14 10:10:11 +02:00
|
|
|
(define-public gcc-objc++-5
|
|
|
|
(custom-gcc gcc-5 "gcc-objc++" '("obj-c++")
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "OBJCPLUS_INCLUDE_PATH")
|
|
|
|
(files '("include")))
|
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBRARY_PATH")
|
|
|
|
(files '("lib" "lib64"))))))
|
|
|
|
|
2017-09-14 10:12:15 +02:00
|
|
|
(define-public gcc-objc++-6
|
|
|
|
(custom-gcc gcc-6 "gcc-objc++" '("obj-c++")
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "OBJCPLUS_INCLUDE_PATH")
|
|
|
|
(files '("include")))
|
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBRARY_PATH")
|
|
|
|
(files '("lib" "lib64"))))))
|
|
|
|
|
2017-09-14 10:14:36 +02:00
|
|
|
(define-public gcc-objc++-7
|
|
|
|
(custom-gcc gcc-7 "gcc-objc++" '("obj-c++")
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "OBJCPLUS_INCLUDE_PATH")
|
|
|
|
(files '("include")))
|
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBRARY_PATH")
|
|
|
|
(files '("lib" "lib64"))))))
|
|
|
|
|
2018-09-02 16:27:56 +02:00
|
|
|
(define-public gcc-objc++-8
|
|
|
|
(custom-gcc gcc-8 "gcc-objc++" '("obj-c++")
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "OBJCPLUS_INCLUDE_PATH")
|
|
|
|
(files '("include")))
|
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBRARY_PATH")
|
|
|
|
(files '("lib" "lib64"))))))
|
|
|
|
|
2017-09-14 10:16:45 +02:00
|
|
|
(define-public gcc-objc++ gcc-objc++-5)
|
2016-05-16 20:12:08 +02:00
|
|
|
|
2015-07-12 23:09:44 +02:00
|
|
|
(define (make-libstdc++-doc gcc)
|
|
|
|
"Return a package with the libstdc++ documentation for GCC."
|
|
|
|
(package
|
|
|
|
(inherit gcc)
|
|
|
|
(name "libstdc++-doc")
|
|
|
|
(version (package-version gcc))
|
|
|
|
(synopsis "GNU libstdc++ documentation")
|
|
|
|
(outputs '("out"))
|
|
|
|
(native-inputs `(("doxygen" ,doxygen)
|
|
|
|
("texinfo" ,texinfo)
|
|
|
|
("libxml2" ,libxml2)
|
|
|
|
("libxslt" ,libxslt)
|
|
|
|
("docbook-xml" ,docbook-xml)
|
|
|
|
("docbook-xsl" ,docbook-xsl)
|
|
|
|
("graphviz" ,graphviz))) ;for 'dot', invoked by 'doxygen'
|
|
|
|
(inputs '())
|
|
|
|
(propagated-inputs '())
|
|
|
|
(arguments
|
|
|
|
'(#:out-of-source? #t
|
|
|
|
#:tests? #f ;it's just documentation
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'chdir
|
|
|
|
(lambda _
|
2018-03-16 06:48:45 +01:00
|
|
|
(chdir "libstdc++-v3")
|
|
|
|
#t))
|
2015-07-12 23:09:44 +02:00
|
|
|
(add-before 'configure 'set-xsl-directory
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(let ((docbook (assoc-ref inputs "docbook-xsl")))
|
|
|
|
(substitute* (find-files "doc"
|
|
|
|
"^Makefile\\.in$")
|
|
|
|
(("@XSL_STYLE_DIR@")
|
|
|
|
(string-append
|
|
|
|
docbook "/xml/xsl/"
|
2018-03-16 06:48:45 +01:00
|
|
|
(strip-store-file-name docbook))))
|
|
|
|
#t)))
|
2015-07-12 23:09:44 +02:00
|
|
|
(replace 'build
|
|
|
|
(lambda _
|
|
|
|
;; XXX: There's also a 'doc-info' target, but it
|
|
|
|
;; relies on docbook2X, which itself relies on
|
|
|
|
;; DocBook 4.1.2, which is not really usable
|
|
|
|
;; (lacks a catalog.xml.)
|
2018-03-16 06:48:45 +01:00
|
|
|
(invoke "make"
|
|
|
|
"doc-html"
|
|
|
|
"doc-man")))
|
2015-07-12 23:09:44 +02:00
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
2018-03-16 06:48:45 +01:00
|
|
|
(invoke "make"
|
|
|
|
"doc-install-html"
|
|
|
|
"doc-install-man")))))))))
|
2015-07-12 23:09:44 +02:00
|
|
|
|
|
|
|
(define-public libstdc++-doc-4.9
|
|
|
|
(make-libstdc++-doc gcc-4.9))
|
|
|
|
|
2015-07-20 03:11:56 +02:00
|
|
|
(define-public libstdc++-doc-5
|
|
|
|
(make-libstdc++-doc gcc-5))
|
2015-07-12 23:09:44 +02:00
|
|
|
|
2013-03-27 15:37:27 +01:00
|
|
|
(define-public isl
|
|
|
|
(package
|
|
|
|
(name "isl")
|
2018-06-11 02:35:27 +02:00
|
|
|
(version "0.19")
|
2013-03-27 15:37:27 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (list (string-append
|
2013-09-10 19:05:43 +02:00
|
|
|
"http://isl.gforge.inria.fr/isl-"
|
2013-03-27 15:37:27 +01:00
|
|
|
version
|
|
|
|
".tar.bz2")
|
|
|
|
(string-append %gcc-infrastructure
|
|
|
|
name "-" version ".tar.gz")))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2018-06-11 02:35:27 +02:00
|
|
|
"1n4yz9rj24mv226hqbpw210ifvqkn8dgvpnkzf0s0lkq9zrjd5ym"))))
|
2013-03-27 15:37:27 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs `(("gmp" ,gmp)))
|
2013-09-10 19:05:43 +02:00
|
|
|
(home-page "http://isl.gforge.inria.fr/")
|
2013-03-27 15:37:27 +01:00
|
|
|
(synopsis
|
2014-09-13 15:50:30 +02:00
|
|
|
"Manipulating sets and relations of integer points \
|
|
|
|
bounded by linear constraints")
|
2013-03-27 15:37:27 +01:00
|
|
|
(description
|
|
|
|
"isl is a library for manipulating sets and relations of integer points
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 06:46:59 +02:00
|
|
|
bounded by linear constraints. Supported operations on sets include
|
2013-03-27 15:37:27 +01:00
|
|
|
intersection, union, set difference, emptiness check, convex hull, (integer)
|
|
|
|
affine hull, integer projection, computing the lexicographic minimum using
|
|
|
|
parametric integer programming, coalescing and parametric vertex
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 06:46:59 +02:00
|
|
|
enumeration. It also includes an ILP solver based on generalized basis
|
2013-03-27 15:37:27 +01:00
|
|
|
reduction, transitive closures on maps (which may encode infinite graphs),
|
|
|
|
dependence analysis and bounds on piecewise step-polynomials.")
|
|
|
|
(license lgpl2.1+)))
|
|
|
|
|
2018-08-10 17:00:27 +02:00
|
|
|
(define-public isl-0.18
|
|
|
|
(package
|
|
|
|
(inherit isl)
|
|
|
|
(version "0.18")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (list (string-append "http://isl.gforge.inria.fr/isl-"
|
|
|
|
version ".tar.bz2")
|
|
|
|
(string-append %gcc-infrastructure
|
|
|
|
"isl-" version ".tar.gz")))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"06ybml6llhi4i56q90jnimbcgk1lpcdwhy9nxdxra2hxz3bhz2vb"))))))
|
|
|
|
|
2017-09-12 20:12:46 +02:00
|
|
|
(define-public isl-0.11
|
|
|
|
(package
|
|
|
|
(inherit isl)
|
|
|
|
(name "isl")
|
|
|
|
(version "0.11.1")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (list (string-append
|
|
|
|
"http://isl.gforge.inria.fr/isl-"
|
|
|
|
version
|
|
|
|
".tar.bz2")
|
|
|
|
(string-append %gcc-infrastructure
|
|
|
|
name "-" version ".tar.gz")))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"13d9cqa5rzhbjq0xf0b2dyxag7pqa72xj9dhsa03m8ccr1a4npq9"))
|
|
|
|
(patches (search-patches "isl-0.11.1-aarch64-support.patch"))))))
|
|
|
|
|
2013-03-27 15:37:27 +01:00
|
|
|
(define-public cloog
|
|
|
|
(package
|
|
|
|
(name "cloog")
|
|
|
|
(version "0.18.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (list (string-append
|
|
|
|
"http://www.bastoul.net/cloog/pages/download/count.php3?url=cloog-"
|
|
|
|
version
|
|
|
|
".tar.gz")
|
|
|
|
(string-append %gcc-infrastructure
|
|
|
|
name "-" version ".tar.gz")))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0a12rwfwp22zd0nlld0xyql11cj390rrq1prw35yjsw8wzfshjhw"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs `(("gmp" ,gmp)
|
2017-09-12 20:12:46 +02:00
|
|
|
("isl" ,isl-0.11)))
|
2013-03-27 15:37:27 +01:00
|
|
|
(arguments '(#:configure-flags '("--with-isl=system")))
|
|
|
|
(home-page "http://www.cloog.org/")
|
2014-09-13 15:50:30 +02:00
|
|
|
(synopsis "Library to generate code for scanning Z-polyhedra")
|
2013-03-27 15:37:27 +01:00
|
|
|
(description
|
|
|
|
"CLooG is a free software library to generate code for scanning
|
|
|
|
Z-polyhedra. That is, it finds a code (e.g., in C, FORTRAN...) that
|
|
|
|
reaches each integral point of one or more parameterized polyhedra.
|
|
|
|
CLooG has been originally written to solve the code generation problem
|
|
|
|
for optimizing compilers based on the polytope model. Nevertheless it
|
|
|
|
is used now in various area e.g., to build control automata for
|
|
|
|
high-level synthesis or to find the best polynomial approximation of a
|
|
|
|
function. CLooG may help in any situation where scanning polyhedra
|
|
|
|
matters. While the user has full control on generated code quality,
|
|
|
|
CLooG is designed to avoid control overhead and to produce a very
|
|
|
|
effective code.")
|
|
|
|
(license gpl2+)))
|
2013-03-27 15:47:48 +01:00
|
|
|
|
2015-07-19 22:27:37 +02:00
|
|
|
(define-public gnu-c-manual
|
|
|
|
(package
|
|
|
|
(name "gnu-c-manual")
|
2016-10-04 16:02:36 +02:00
|
|
|
(version "0.2.5")
|
2015-07-19 22:27:37 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/gnu-c-manual/gnu-c-manual-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-10-04 16:02:36 +02:00
|
|
|
"1sfsj9256w18qzylgag2h5h377aq8in8929svblfnj9svfriqcys"))))
|
2015-07-19 22:27:37 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs `(("texinfo" ,texinfo)))
|
|
|
|
(arguments
|
|
|
|
'(#:phases (modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
|
|
|
(delete 'check)
|
|
|
|
(replace 'build
|
|
|
|
(lambda _
|
2018-03-16 06:55:07 +01:00
|
|
|
(invoke "make"
|
|
|
|
"gnu-c-manual.info"
|
|
|
|
"gnu-c-manual.html")))
|
2015-07-19 22:27:37 +02:00
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(info (string-append out "/share/info"))
|
|
|
|
(html (string-append
|
|
|
|
out "/share/doc/gnu-c-manual")))
|
|
|
|
(mkdir-p info)
|
|
|
|
(mkdir-p html)
|
|
|
|
|
|
|
|
(for-each (lambda (file)
|
|
|
|
(copy-file file
|
|
|
|
(string-append info "/"
|
|
|
|
file)))
|
|
|
|
(find-files "." "\\.info(-[0-9])?$"))
|
|
|
|
(for-each (lambda (file)
|
|
|
|
(copy-file file
|
|
|
|
(string-append html "/"
|
|
|
|
file)))
|
|
|
|
(find-files "." "\\.html$"))
|
|
|
|
#t))))))
|
|
|
|
(synopsis "Reference manual for the C programming language")
|
|
|
|
(description
|
|
|
|
"This is a reference manual for the C programming language, as
|
|
|
|
implemented by the GNU C Compiler (gcc). As a reference, it is not intended
|
|
|
|
to be a tutorial of the language. Rather, it outlines all of the constructs
|
|
|
|
of the language. Library functions are not included.")
|
2017-03-30 00:48:16 +02:00
|
|
|
(home-page "https://www.gnu.org/software/gnu-c-manual/")
|
2015-07-19 22:27:37 +02:00
|
|
|
(license fdl1.3+)))
|