2013-02-27 09:38:11 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2018-11-18 23:12:36 +01:00
|
|
|
|
;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
|
2018-03-16 12:33:37 +01:00
|
|
|
|
;;; Copyright © 2014, 2015, 2018 Mark H Weaver <mhw@netris.org>
|
2016-04-29 17:12:22 +02:00
|
|
|
|
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
2016-06-08 16:15:00 +02:00
|
|
|
|
;;; Copyright © 2016 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
|
2018-02-20 04:56:03 +01:00
|
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2019-08-14 19:46:53 +02:00
|
|
|
|
;;; Copyright © 2019 Carl Dong <contact@carldong.me>
|
2013-02-27 09:38:11 +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 cross-base)
|
|
|
|
|
#:use-module (gnu packages)
|
2013-04-17 14:59:19 +02:00
|
|
|
|
#:use-module (gnu packages gcc)
|
2013-02-27 09:38:11 +01:00
|
|
|
|
#:use-module (gnu packages base)
|
|
|
|
|
#:use-module (gnu packages linux)
|
2016-06-08 16:15:00 +02:00
|
|
|
|
#:use-module (gnu packages hurd)
|
2016-05-28 17:32:04 +02:00
|
|
|
|
#:use-module (gnu packages mingw)
|
2013-02-27 09:38:11 +01:00
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix download)
|
|
|
|
|
#:use-module (guix utils)
|
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
|
#:use-module (guix build-system trivial)
|
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
|
#:use-module (srfi srfi-26)
|
2013-05-24 22:44:15 +02:00
|
|
|
|
#:use-module (ice-9 match)
|
2016-06-08 16:15:00 +02:00
|
|
|
|
#:use-module (ice-9 regex)
|
2013-05-24 22:44:15 +02:00
|
|
|
|
#:export (cross-binutils
|
|
|
|
|
cross-libc
|
2016-05-28 17:32:04 +02:00
|
|
|
|
cross-gcc
|
2019-05-28 17:57:41 +02:00
|
|
|
|
cross-newlib?
|
|
|
|
|
cross-kernel-headers))
|
2013-02-27 09:38:11 +01:00
|
|
|
|
|
2017-05-29 13:23:36 +02:00
|
|
|
|
(define-syntax %xgcc
|
2015-06-26 17:06:30 +02:00
|
|
|
|
;; GCC package used as the basis for cross-compilation. It doesn't have to
|
|
|
|
|
;; be 'gcc' and can be a specific variant such as 'gcc-4.8'.
|
2017-05-29 13:23:36 +02:00
|
|
|
|
;;
|
|
|
|
|
;; Note: This is a macro so that we do not refer to 'gcc' from the top
|
|
|
|
|
;; level, which would lead to circular-dependency issues.
|
|
|
|
|
(identifier-syntax gcc))
|
2015-06-26 17:06:30 +02:00
|
|
|
|
|
2016-05-28 17:32:04 +02:00
|
|
|
|
(define %gcc-include-paths
|
|
|
|
|
;; Environment variables for header search paths.
|
|
|
|
|
;; Note: See <http://bugs.gnu.org/22186> for why not 'CPATH'.
|
|
|
|
|
'("C_INCLUDE_PATH"
|
|
|
|
|
"CPLUS_INCLUDE_PATH"
|
|
|
|
|
"OBJC_INCLUDE_PATH"
|
|
|
|
|
"OBJCPLUS_INCLUDE_PATH"))
|
|
|
|
|
|
|
|
|
|
(define %gcc-cross-include-paths
|
|
|
|
|
;; Search path for target headers when cross-compiling.
|
|
|
|
|
(map (cut string-append "CROSS_" <>) %gcc-include-paths))
|
|
|
|
|
|
2013-02-27 09:38:11 +01:00
|
|
|
|
(define (cross p target)
|
|
|
|
|
(package (inherit p)
|
|
|
|
|
(name (string-append (package-name p) "-cross-" target))
|
|
|
|
|
(arguments
|
|
|
|
|
(substitute-keyword-arguments (package-arguments p)
|
|
|
|
|
((#:configure-flags flags)
|
|
|
|
|
`(cons ,(string-append "--target=" target)
|
|
|
|
|
,flags))))))
|
|
|
|
|
|
2014-11-11 21:54:41 +01:00
|
|
|
|
(define (package-with-patch original patch)
|
|
|
|
|
"Return package ORIGINAL with PATCH applied."
|
|
|
|
|
(package (inherit original)
|
|
|
|
|
(source (origin (inherit (package-source original))
|
|
|
|
|
(patches (list patch))))))
|
|
|
|
|
|
2013-05-27 22:23:21 +02:00
|
|
|
|
(define (cross-binutils target)
|
|
|
|
|
"Return a cross-Binutils for TARGET."
|
|
|
|
|
(let ((binutils (package (inherit binutils)
|
|
|
|
|
(arguments
|
|
|
|
|
(substitute-keyword-arguments (package-arguments
|
|
|
|
|
binutils)
|
|
|
|
|
((#:configure-flags flags)
|
|
|
|
|
;; Build with `--with-sysroot' so that ld honors
|
|
|
|
|
;; DT_RUNPATH entries when searching for a needed
|
|
|
|
|
;; library. This works because as a side effect
|
|
|
|
|
;; `genscripts.sh' sets `USE_LIBPATH=yes', which tells
|
|
|
|
|
;; elf32.em to use DT_RUNPATH in its search list.
|
2013-06-26 14:31:24 +02:00
|
|
|
|
;; See <http://sourceware.org/ml/binutils/2013-05/msg00312.html>.
|
|
|
|
|
;;
|
|
|
|
|
;; In theory choosing / as the sysroot could lead ld
|
|
|
|
|
;; to pick up native libs instead of target ones. In
|
|
|
|
|
;; practice the RUNPATH of target libs only refers to
|
|
|
|
|
;; target libs, not native libs, so this is safe.
|
|
|
|
|
`(cons "--with-sysroot=/" ,flags)))))))
|
2014-11-11 21:54:41 +01:00
|
|
|
|
|
|
|
|
|
;; For Xtensa, apply Qualcomm's patch.
|
|
|
|
|
(cross (if (string-prefix? "xtensa-" target)
|
|
|
|
|
(package-with-patch binutils
|
|
|
|
|
(search-patch
|
|
|
|
|
"ath9k-htc-firmware-binutils.patch"))
|
|
|
|
|
binutils)
|
|
|
|
|
target)))
|
2013-02-27 09:38:11 +01:00
|
|
|
|
|
2017-05-22 16:13:15 +02:00
|
|
|
|
(define (cross-gcc-arguments target xgcc libc)
|
|
|
|
|
"Return build system arguments for a cross-gcc for TARGET, using XGCC as the
|
|
|
|
|
base compiler and using LIBC (which may be either a libc package or #f.)"
|
2014-10-05 16:25:25 +02:00
|
|
|
|
;; Set the current target system so that 'glibc-dynamic-linker' returns the
|
|
|
|
|
;; right name.
|
|
|
|
|
(parameterize ((%current-target-system target))
|
2015-06-10 23:19:30 +02:00
|
|
|
|
;; Disable stripping as this can break binaries, with object files of
|
|
|
|
|
;; libgcc.a showing up as having an unknown architecture. See
|
|
|
|
|
;; <http://lists.fedoraproject.org/pipermail/arm/2010-August/000663.html>
|
|
|
|
|
;; for instance.
|
|
|
|
|
(let ((args `(#:strip-binaries? #f
|
2017-05-22 16:13:15 +02:00
|
|
|
|
,@(package-arguments xgcc))))
|
2015-06-10 23:19:30 +02:00
|
|
|
|
(substitute-keyword-arguments args
|
|
|
|
|
((#:configure-flags flags)
|
|
|
|
|
`(append (list ,(string-append "--target=" target)
|
|
|
|
|
,@(if libc
|
2015-07-19 17:16:51 +02:00
|
|
|
|
`( ;; Disable libcilkrts because it is not
|
2016-12-07 13:57:43 +01:00
|
|
|
|
;; ported to GNU/Hurd.
|
2015-07-19 17:16:51 +02:00
|
|
|
|
"--disable-libcilkrts")
|
2015-06-10 23:19:30 +02:00
|
|
|
|
`( ;; Disable features not needed at this stage.
|
|
|
|
|
"--disable-shared" "--enable-static"
|
2016-01-11 19:43:25 +01:00
|
|
|
|
"--enable-languages=c,c++"
|
2014-10-02 21:41:40 +02:00
|
|
|
|
|
2016-01-11 19:43:25 +01:00
|
|
|
|
;; libstdc++ cannot be built at this stage
|
|
|
|
|
;; ("Link tests are not allowed after
|
|
|
|
|
;; GCC_NO_EXECUTABLES.").
|
|
|
|
|
"--disable-libstdc++-v3"
|
2014-10-02 21:41:40 +02:00
|
|
|
|
|
2015-06-10 23:19:30 +02:00
|
|
|
|
"--disable-threads" ;libgcc, would need libc
|
|
|
|
|
"--disable-libatomic"
|
|
|
|
|
"--disable-libmudflap"
|
|
|
|
|
"--disable-libgomp"
|
|
|
|
|
"--disable-libssp"
|
|
|
|
|
"--disable-libquadmath"
|
|
|
|
|
"--disable-decimal-float" ;would need libc
|
2015-07-19 17:16:51 +02:00
|
|
|
|
"--disable-libcilkrts"
|
2016-02-16 14:06:33 +01:00
|
|
|
|
|
|
|
|
|
;; When target is any OS other than 'none' these
|
|
|
|
|
;; libraries will fail if there is no libc
|
|
|
|
|
;; present. See
|
|
|
|
|
;; <https://lists.gnu.org/archive/html/guix-devel/2016-02/msg01311.html>
|
|
|
|
|
"--disable-libitm"
|
|
|
|
|
"--disable-libvtv"
|
|
|
|
|
"--disable-libsanitizer"
|
2016-05-28 17:32:04 +02:00
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
;; For a newlib (non-glibc) target
|
|
|
|
|
,@(if (cross-newlib? target)
|
|
|
|
|
'("--with-newlib")
|
|
|
|
|
'()))
|
2014-10-02 21:41:40 +02:00
|
|
|
|
|
2015-06-10 23:19:30 +02:00
|
|
|
|
,(if libc
|
|
|
|
|
flags
|
|
|
|
|
`(remove (cut string-match "--enable-languages.*" <>)
|
|
|
|
|
,flags))))
|
|
|
|
|
((#:make-flags flags)
|
|
|
|
|
(if libc
|
|
|
|
|
`(let ((libc (assoc-ref %build-inputs "libc")))
|
|
|
|
|
;; FLAGS_FOR_TARGET are needed for the target libraries to receive
|
|
|
|
|
;; the -Bxxx for the startfiles.
|
|
|
|
|
(cons (string-append "FLAGS_FOR_TARGET=-B" libc "/lib")
|
|
|
|
|
,flags))
|
|
|
|
|
flags))
|
|
|
|
|
((#:phases phases)
|
2016-12-07 21:49:25 +01:00
|
|
|
|
`(cross-gcc-build-phases ,target ,phases))))))
|
2014-10-02 21:41:40 +02:00
|
|
|
|
|
2014-11-11 21:54:41 +01:00
|
|
|
|
(define (cross-gcc-patches target)
|
|
|
|
|
"Return GCC patches needed for TARGET."
|
|
|
|
|
(cond ((string-prefix? "xtensa-" target)
|
|
|
|
|
;; Patch by Qualcomm needed to build the ath9k-htc firmware.
|
2016-04-08 14:18:13 +02:00
|
|
|
|
(search-patches "ath9k-htc-firmware-gcc.patch"))
|
2016-05-28 17:32:04 +02:00
|
|
|
|
((target-mingw? target)
|
|
|
|
|
(search-patches "gcc-4.9.3-mingw-gthr-default.patch"))
|
2014-11-11 21:54:41 +01:00
|
|
|
|
(else '())))
|
|
|
|
|
|
2016-05-28 17:32:04 +02:00
|
|
|
|
(define (cross-gcc-snippet target)
|
|
|
|
|
"Return GCC snippet needed for TARGET."
|
|
|
|
|
(cond ((target-mingw? target)
|
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
|
|
|
|
|
(copy-recursively "libstdc++-v3/config/os/mingw32-w64"
|
|
|
|
|
"libstdc++-v3/config/os/newlib")
|
|
|
|
|
#t))
|
2016-05-28 17:32:04 +02:00
|
|
|
|
(else #f)))
|
|
|
|
|
|
2013-02-27 09:38:11 +01:00
|
|
|
|
(define* (cross-gcc target
|
2017-05-22 16:13:15 +02:00
|
|
|
|
#:key
|
|
|
|
|
(xgcc %xgcc)
|
|
|
|
|
(xbinutils (cross-binutils target))
|
|
|
|
|
(libc #f))
|
2013-02-27 09:38:11 +01:00
|
|
|
|
"Return a cross-compiler for TARGET, where TARGET is a GNU triplet. Use
|
2017-05-22 16:13:15 +02:00
|
|
|
|
XGCC as the base compiler. Use XBINUTILS as the associated cross-Binutils.
|
|
|
|
|
If LIBC is false, then build a GCC that does not target a libc; otherwise,
|
|
|
|
|
target that libc."
|
|
|
|
|
(package (inherit xgcc)
|
2013-02-27 09:38:11 +01:00
|
|
|
|
(name (string-append "gcc-cross-"
|
|
|
|
|
(if libc "" "sans-libc-")
|
|
|
|
|
target))
|
2017-05-22 16:13:15 +02:00
|
|
|
|
(source (origin (inherit (package-source xgcc))
|
gnu: Use the 'patches' field of <origin>.
* gnu/packages/apr.scm,
gnu/packages/autotools.scm,
gnu/packages/avahi.scm,
gnu/packages/cdrom.scm,
gnu/packages/cmake.scm,
gnu/packages/cpio.scm,
gnu/packages/cross-base.scm,
gnu/packages/emacs.scm,
gnu/packages/flex.scm,
gnu/packages/fontutils.scm,
gnu/packages/glib.scm,
gnu/packages/grub.scm,
gnu/packages/guile.scm,
gnu/packages/idutils.scm,
gnu/packages/libevent.scm,
gnu/packages/linux.scm,
gnu/packages/mail.scm,
gnu/packages/make-bootstrap.scm,
gnu/packages/mp3.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/pdf.scm,
gnu/packages/plotutils.scm,
gnu/packages/qemu.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/system.scm,
gnu/packages/tcsh.scm,
gnu/packages/valgrind.scm,
gnu/packages/vpn.scm,
gnu/packages/w3m: Use the 'patches' field of <origin> instead of
adding a patch as input plus using #:patches.
2013-10-09 00:09:04 +02:00
|
|
|
|
(patches
|
2015-04-09 07:48:05 +02:00
|
|
|
|
(append
|
2017-05-22 16:13:15 +02:00
|
|
|
|
(origin-patches (package-source xgcc))
|
2019-05-05 16:33:46 +02:00
|
|
|
|
(cons (cond
|
|
|
|
|
((version>=? (package-version xgcc) "8.0") (search-patch "gcc-8-cross-environment-variables.patch"))
|
|
|
|
|
((version>=? (package-version xgcc) "6.0") (search-patch "gcc-6-cross-environment-variables.patch"))
|
|
|
|
|
(else (search-patch "gcc-cross-environment-variables.patch")))
|
2016-05-28 17:32:04 +02:00
|
|
|
|
(cross-gcc-patches target))))
|
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
(cross-gcc-snippet target))))
|
2014-06-09 22:45:01 +02:00
|
|
|
|
|
|
|
|
|
;; For simplicity, use a single output. Otherwise libgcc_s & co. are not
|
|
|
|
|
;; found by default, etc.
|
|
|
|
|
(outputs '("out"))
|
|
|
|
|
|
2013-02-27 09:38:11 +01:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:implicit-inputs? #f
|
2016-12-07 21:49:25 +01:00
|
|
|
|
#:imported-modules ((gnu build cross-toolchain)
|
|
|
|
|
,@%gnu-build-system-modules)
|
2013-02-27 09:38:11 +01:00
|
|
|
|
#:modules ((guix build gnu-build-system)
|
|
|
|
|
(guix build utils)
|
2016-12-07 21:49:25 +01:00
|
|
|
|
(gnu build cross-toolchain)
|
2013-02-27 09:38:11 +01:00
|
|
|
|
(srfi srfi-1)
|
2016-12-07 21:49:25 +01:00
|
|
|
|
(srfi srfi-26)
|
|
|
|
|
(ice-9 regex))
|
2013-02-27 09:38:11 +01:00
|
|
|
|
|
2017-05-22 16:13:15 +02:00
|
|
|
|
,@(cross-gcc-arguments target xgcc libc)))
|
2013-06-25 20:57:14 +02:00
|
|
|
|
|
|
|
|
|
(native-inputs
|
2015-04-03 21:26:24 +02:00
|
|
|
|
`(("ld-wrapper-cross" ,(make-ld-wrapper
|
|
|
|
|
(string-append "ld-wrapper-" target)
|
2016-10-31 15:41:14 +01:00
|
|
|
|
#:target (const target)
|
2015-04-03 21:26:24 +02:00
|
|
|
|
#:binutils xbinutils))
|
|
|
|
|
("binutils-cross" ,xbinutils)
|
2013-02-27 09:38:11 +01:00
|
|
|
|
|
|
|
|
|
;; Call it differently so that the builder can check whether the "libc"
|
|
|
|
|
;; input is #f.
|
2016-11-04 15:16:11 +01:00
|
|
|
|
("libc-native" ,@(assoc-ref (%final-inputs) "libc"))
|
2013-02-27 09:38:11 +01:00
|
|
|
|
|
|
|
|
|
;; Remaining inputs.
|
2017-05-22 16:13:15 +02:00
|
|
|
|
,@(let ((inputs (append (package-inputs xgcc)
|
2016-11-04 15:16:11 +01:00
|
|
|
|
(alist-delete "libc" (%final-inputs)))))
|
2016-05-28 17:32:04 +02:00
|
|
|
|
(cond
|
|
|
|
|
((target-mingw? target)
|
|
|
|
|
(if libc
|
2019-08-14 19:46:53 +02:00
|
|
|
|
`(("libc" ,libc)
|
2016-05-28 17:32:04 +02:00
|
|
|
|
,@inputs)
|
|
|
|
|
`(("mingw-source" ,(package-source mingw-w64))
|
|
|
|
|
,@inputs)))
|
|
|
|
|
(libc
|
|
|
|
|
`(("libc" ,libc)
|
2017-09-03 14:25:39 +02:00
|
|
|
|
("libc:static" ,libc "static")
|
2016-05-28 17:32:04 +02:00
|
|
|
|
("xkernel-headers" ;the target headers
|
|
|
|
|
,@(assoc-ref (package-propagated-inputs libc)
|
|
|
|
|
"kernel-headers"))
|
|
|
|
|
,@inputs))
|
|
|
|
|
(else inputs)))))
|
2013-05-24 21:55:52 +02:00
|
|
|
|
|
2013-06-25 20:57:14 +02:00
|
|
|
|
(inputs '())
|
|
|
|
|
|
2013-05-24 21:55:52 +02:00
|
|
|
|
;; Only search target inputs, not host inputs.
|
2016-05-28 17:32:04 +02:00
|
|
|
|
(search-paths (cons (search-path-specification
|
|
|
|
|
(variable "CROSS_LIBRARY_PATH")
|
|
|
|
|
(files '("lib" "lib64")))
|
|
|
|
|
(map (lambda (variable)
|
|
|
|
|
(search-path-specification
|
|
|
|
|
(variable variable)
|
|
|
|
|
(files '("include"))))
|
|
|
|
|
%gcc-cross-include-paths)))
|
2013-05-24 21:55:52 +02:00
|
|
|
|
(native-search-paths '())))
|
2013-02-27 09:38:11 +01:00
|
|
|
|
|
2016-06-08 16:15:00 +02:00
|
|
|
|
(define* (cross-kernel-headers target
|
|
|
|
|
#:optional
|
2019-05-28 17:57:41 +02:00
|
|
|
|
(linux-headers linux-libre-headers)
|
2016-06-08 16:15:00 +02:00
|
|
|
|
(xgcc (cross-gcc target))
|
|
|
|
|
(xbinutils (cross-binutils target)))
|
|
|
|
|
"Return headers depending on TARGET."
|
|
|
|
|
|
2013-02-27 09:38:11 +01:00
|
|
|
|
(define xlinux-headers
|
2019-05-28 17:57:41 +02:00
|
|
|
|
(package (inherit linux-headers)
|
|
|
|
|
(name (string-append (package-name linux-headers)
|
2013-02-27 09:38:11 +01:00
|
|
|
|
"-cross-" target))
|
|
|
|
|
(arguments
|
build-system: Introduce "bags" as an intermediate representation.
* guix/build-system.scm (<build-system>)[build, cross-build]: Remove.
[lower]: New field.
(<bag>): New record type.
(make-bag): New procedure.
* guix/packages.scm (bag-transitive-inputs, bag-transitive-build-inputs,
bag-transitive-host-inputs, bag-transitive-target-inputs,
package->bag): New procedures.
(package-derivation): Use it; use the bag, apply its build procedure,
etc.
(package-cross-derivation): Likewise.
* gnu/packages/bootstrap.scm (raw-build, make-raw-bag): New procedure.
(%bootstrap-guile): Use them.
* guix/build-system/trivial.scm (lower): New procedure.
(trivial-build, trivial-cross-build): Remove 'source' parameter. Pass
INPUTS as is.
(trivial-build-system): Adjust accordingly.
* guix/build-system/gnu.scm (%store, inputs-search-paths,
standard-search-paths, expand-inputs, standard-inputs): Remove.
(gnu-lower): New procedure.
(gnu-build): Remove 'source' and #:implicit-inputs? parameters.
Remove 'implicit-inputs' and 'implicit-search-paths' variables. Get
the source from INPUT-DRVS.
(gnu-cross-build): Likewise.
(standard-cross-packages): Remove call to 'standard-packages'.
(standard-cross-inputs, standard-cross-search-paths): Remove.
(gnu-build-system): Remove 'build' and 'cross-build'; add 'lower'.
* guix/build-system/cmake.scm (lower): New procedure.
(cmake-build): Remove 'source' and #:cmake parameters. Use INPUTS and
SEARCH-PATHS as is. Get the source from INPUTS.
* guix/build-system/perl.scm: Likewise.
* guix/build-system/python.scm: Likewise.
* guix/build-system/ruby.scm: Likewise.
* gnu/packages/cross-base.scm (cross-gcc): Change "cross-linux-headers"
to "linux-headers".
(cross-libc)[xlinux-headers]: Pass #:implicit-cross-inputs? #f.
Likewise. In 'propagated-inputs', change "cross-linux-headers" to
"linux-headers".
* guix/git-download.scm (git-fetch): Use 'standard-packages' instead of
'standard-inputs'.
* tests/builders.scm ("gnu-build-system"): Remove use of
'build-system-builder'.
("gnu-build"): Remove 'source' and #:implicit-inputs? arguments to
'gnu-build'.
* tests/packages.scm ("search paths"): Adjust to new build system API.
("package-cross-derivation, no cross builder"): Likewise.
* doc/guix.texi (Build Systems): Add paragraph on bags.
2014-10-03 18:06:16 +02:00
|
|
|
|
(substitute-keyword-arguments
|
|
|
|
|
`(#:implicit-cross-inputs? #f
|
2019-05-28 17:57:41 +02:00
|
|
|
|
,@(package-arguments linux-headers))
|
2013-02-27 09:38:11 +01:00
|
|
|
|
((#:phases phases)
|
|
|
|
|
`(alist-replace
|
|
|
|
|
'build
|
|
|
|
|
(lambda _
|
|
|
|
|
(setenv "ARCH" ,(system->linux-architecture target))
|
|
|
|
|
(format #t "`ARCH' set to `~a' (cross compiling)~%" (getenv "ARCH"))
|
|
|
|
|
|
2018-03-16 12:33:37 +01:00
|
|
|
|
(invoke "make" ,(system->defconfig target))
|
|
|
|
|
(invoke "make" "mrproper" "headers_check"))
|
2013-02-27 09:38:11 +01:00
|
|
|
|
,phases))))
|
2013-06-25 20:57:14 +02:00
|
|
|
|
(native-inputs `(("cross-gcc" ,xgcc)
|
|
|
|
|
("cross-binutils" ,xbinutils)
|
2019-05-28 17:57:41 +02:00
|
|
|
|
,@(package-native-inputs linux-headers)))))
|
2013-02-27 09:38:11 +01:00
|
|
|
|
|
2016-06-08 16:15:00 +02:00
|
|
|
|
(define xgnumach-headers
|
|
|
|
|
(package (inherit gnumach-headers)
|
|
|
|
|
(name (string-append (package-name gnumach-headers)
|
|
|
|
|
"-cross-" target))
|
|
|
|
|
|
|
|
|
|
(native-inputs `(("cross-gcc" ,xgcc)
|
|
|
|
|
("cross-binutils" ,xbinutils)
|
|
|
|
|
,@(package-native-inputs gnumach-headers)))))
|
|
|
|
|
|
|
|
|
|
(define xmig
|
|
|
|
|
(package (inherit mig)
|
|
|
|
|
(name (string-append "mig-cross"))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:modules ((guix build gnu-build-system)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(srfi srfi-26))
|
2018-02-20 04:56:03 +01:00
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
|
(add-before 'configure 'set-cross-headers-path
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let* ((mach (assoc-ref inputs "cross-gnumach-headers"))
|
|
|
|
|
(cpath (string-append mach "/include")))
|
|
|
|
|
(for-each (cut setenv <> cpath)
|
|
|
|
|
',%gcc-cross-include-paths)
|
|
|
|
|
#t))))
|
2016-06-08 16:15:00 +02:00
|
|
|
|
#:configure-flags (list ,(string-append "--target=" target))
|
|
|
|
|
,@(package-arguments mig)))
|
|
|
|
|
|
|
|
|
|
(propagated-inputs `(("cross-gnumach-headers" ,xgnumach-headers)))
|
|
|
|
|
(native-inputs `(("cross-gcc" ,xgcc)
|
|
|
|
|
("cross-binutils" ,xbinutils)
|
|
|
|
|
,@(package-native-inputs mig)))))
|
|
|
|
|
|
|
|
|
|
(define xhurd-headers
|
|
|
|
|
(package (inherit hurd-headers)
|
|
|
|
|
(name (string-append (package-name hurd-headers)
|
|
|
|
|
"-cross-" target))
|
|
|
|
|
|
|
|
|
|
(native-inputs `(("cross-gcc" ,xgcc)
|
|
|
|
|
("cross-binutils" ,xbinutils)
|
|
|
|
|
("cross-mig" ,xmig)
|
|
|
|
|
,@(alist-delete "mig"(package-native-inputs hurd-headers))))))
|
|
|
|
|
|
|
|
|
|
(define xglibc/hurd-headers
|
|
|
|
|
(package (inherit glibc/hurd-headers)
|
|
|
|
|
(name (string-append (package-name glibc/hurd-headers)
|
|
|
|
|
"-cross-" target))
|
|
|
|
|
|
|
|
|
|
(arguments
|
|
|
|
|
(substitute-keyword-arguments
|
|
|
|
|
`(#:modules ((guix build gnu-build-system)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(srfi srfi-26))
|
|
|
|
|
,@(package-arguments glibc/hurd-headers))
|
|
|
|
|
((#:phases phases)
|
2018-02-20 04:56:03 +01:00
|
|
|
|
`(modify-phases ,phases
|
2018-11-18 23:12:36 +01:00
|
|
|
|
(add-after 'unpack 'set-cross-headers-path
|
2018-02-20 04:56:03 +01:00
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let* ((mach (assoc-ref inputs "gnumach-headers"))
|
|
|
|
|
(hurd (assoc-ref inputs "hurd-headers"))
|
|
|
|
|
(cpath (string-append mach "/include:"
|
|
|
|
|
hurd "/include")))
|
|
|
|
|
(for-each (cut setenv <> cpath)
|
|
|
|
|
',%gcc-cross-include-paths)
|
|
|
|
|
#t)))))))
|
2016-06-08 16:15:00 +02:00
|
|
|
|
|
|
|
|
|
(propagated-inputs `(("gnumach-headers" ,xgnumach-headers)
|
|
|
|
|
("hurd-headers" ,xhurd-headers)))
|
|
|
|
|
|
|
|
|
|
(native-inputs `(("cross-gcc" ,xgcc)
|
|
|
|
|
("cross-binutils" ,xbinutils)
|
|
|
|
|
("cross-mig" ,xmig)
|
|
|
|
|
,@(alist-delete "mig"(package-native-inputs glibc/hurd-headers))))))
|
|
|
|
|
|
|
|
|
|
(define xhurd-minimal
|
|
|
|
|
(package (inherit hurd-minimal)
|
|
|
|
|
(name (string-append (package-name hurd-minimal)
|
|
|
|
|
"-cross-" target))
|
|
|
|
|
(arguments
|
|
|
|
|
(substitute-keyword-arguments
|
|
|
|
|
`(#:modules ((guix build gnu-build-system)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(srfi srfi-26))
|
|
|
|
|
,@(package-arguments hurd-minimal))
|
|
|
|
|
((#:phases phases)
|
2018-02-20 04:56:03 +01:00
|
|
|
|
`(modify-phases ,phases
|
|
|
|
|
(add-before 'configure 'set-cross-headers-path
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let* ((glibc-headers (assoc-ref inputs "cross-glibc-hurd-headers"))
|
|
|
|
|
(cpath (string-append glibc-headers "/include")))
|
|
|
|
|
(for-each (cut setenv <> cpath)
|
|
|
|
|
',%gcc-cross-include-paths)
|
|
|
|
|
#t)))))))
|
2016-06-08 16:15:00 +02:00
|
|
|
|
|
|
|
|
|
(inputs `(("cross-glibc-hurd-headers" ,xglibc/hurd-headers)))
|
|
|
|
|
|
|
|
|
|
(native-inputs `(("cross-gcc" ,xgcc)
|
|
|
|
|
("cross-binutils" ,xbinutils)
|
|
|
|
|
("cross-mig" ,xmig)
|
|
|
|
|
,@(alist-delete "mig"(package-native-inputs hurd-minimal))))))
|
|
|
|
|
|
|
|
|
|
(define xhurd-core-headers
|
|
|
|
|
(package (inherit hurd-core-headers)
|
|
|
|
|
(name (string-append (package-name hurd-core-headers)
|
|
|
|
|
"-cross-" target))
|
|
|
|
|
|
|
|
|
|
(inputs `(("gnumach-headers" ,xgnumach-headers)
|
|
|
|
|
("hurd-headers" ,xhurd-headers)
|
|
|
|
|
("hurd-minimal" ,xhurd-minimal)))
|
|
|
|
|
|
|
|
|
|
(native-inputs `(("cross-gcc" ,xgcc)
|
|
|
|
|
("cross-binutils" ,xbinutils)
|
|
|
|
|
("cross-mig" ,xmig)
|
|
|
|
|
,@(package-native-inputs hurd-core-headers)))))
|
|
|
|
|
|
|
|
|
|
(match target
|
|
|
|
|
((or "i586-pc-gnu" "i586-gnu") xhurd-core-headers)
|
|
|
|
|
(_ xlinux-headers)))
|
|
|
|
|
|
|
|
|
|
(define* (cross-libc target
|
|
|
|
|
#:optional
|
2019-05-07 00:21:43 +02:00
|
|
|
|
(libc glibc)
|
2016-06-08 16:15:00 +02:00
|
|
|
|
(xgcc (cross-gcc target))
|
|
|
|
|
(xbinutils (cross-binutils target))
|
|
|
|
|
(xheaders (cross-kernel-headers target)))
|
2019-05-07 00:21:43 +02:00
|
|
|
|
"Return LIBC cross-built for TARGET, a GNU triplet. Use XGCC and XBINUTILS
|
|
|
|
|
and the cross tool chain."
|
|
|
|
|
(if (cross-newlib? target libc)
|
|
|
|
|
(native-libc target libc)
|
|
|
|
|
(let ((libc libc))
|
2016-05-28 17:32:04 +02:00
|
|
|
|
(package (inherit libc)
|
|
|
|
|
(name (string-append "glibc-cross-" target))
|
|
|
|
|
(arguments
|
|
|
|
|
(substitute-keyword-arguments
|
|
|
|
|
`(;; Disable stripping (see above.)
|
|
|
|
|
#:strip-binaries? #f
|
|
|
|
|
|
|
|
|
|
;; This package is used as a target input, but it should not have
|
|
|
|
|
;; the usual cross-compilation inputs since that would include
|
|
|
|
|
;; itself.
|
|
|
|
|
#:implicit-cross-inputs? #f
|
|
|
|
|
|
|
|
|
|
;; We need SRFI 26.
|
|
|
|
|
#:modules ((guix build gnu-build-system)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(srfi srfi-26))
|
|
|
|
|
|
|
|
|
|
,@(package-arguments libc))
|
|
|
|
|
((#:configure-flags flags)
|
|
|
|
|
`(cons ,(string-append "--host=" target)
|
2018-11-18 23:12:36 +01:00
|
|
|
|
,(if (hurd-triplet? target)
|
|
|
|
|
`(cons "--disable-werror" ,flags)
|
|
|
|
|
flags)))
|
2016-05-28 17:32:04 +02:00
|
|
|
|
((#:phases phases)
|
2018-02-20 04:56:03 +01:00
|
|
|
|
`(modify-phases ,phases
|
2018-12-16 15:36:48 +01:00
|
|
|
|
;; XXX: The hack below allows us to make sure the
|
|
|
|
|
;; 'apply-hurd-patch' phase gets added in the first
|
|
|
|
|
;; cross-libc, but does *not* get added twice subsequently
|
|
|
|
|
;; when cross-building another libc.
|
|
|
|
|
,@(if (and (hurd-triplet? target)
|
|
|
|
|
(not (hurd-target?)))
|
|
|
|
|
`((add-after 'unpack 'apply-hurd-patch
|
|
|
|
|
(lambda* (#:key inputs native-inputs
|
|
|
|
|
#:allow-other-keys)
|
|
|
|
|
;; TODO: Move this to 'patches' field.
|
|
|
|
|
(let ((patch (or (assoc-ref native-inputs
|
|
|
|
|
"hurd-magic-pid-patch")
|
|
|
|
|
(assoc-ref inputs
|
|
|
|
|
"hurd-magic-pid-patch"))))
|
|
|
|
|
(invoke "patch" "-p1" "--force" "--input"
|
|
|
|
|
patch)))))
|
|
|
|
|
'())
|
2018-02-20 04:56:03 +01:00
|
|
|
|
(add-before 'configure 'set-cross-kernel-headers-path
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let* ((kernel (assoc-ref inputs "kernel-headers"))
|
|
|
|
|
(cpath (string-append kernel "/include")))
|
|
|
|
|
(for-each (cut setenv <> cpath)
|
|
|
|
|
',%gcc-cross-include-paths)
|
|
|
|
|
(setenv "CROSS_LIBRARY_PATH"
|
|
|
|
|
(string-append kernel "/lib")) ; for Hurd's libihash
|
|
|
|
|
#t)))))))
|
2016-05-28 17:32:04 +02:00
|
|
|
|
|
|
|
|
|
;; Shadow the native "kernel-headers" because glibc's recipe expects the
|
|
|
|
|
;; "kernel-headers" input to point to the right thing.
|
|
|
|
|
(propagated-inputs `(("kernel-headers" ,xheaders)))
|
|
|
|
|
|
|
|
|
|
;; FIXME: 'static-bash' should really be an input, not a native input, but
|
|
|
|
|
;; to do that will require building an intermediate cross libc.
|
|
|
|
|
(inputs '())
|
|
|
|
|
|
|
|
|
|
(native-inputs `(("cross-gcc" ,xgcc)
|
|
|
|
|
("cross-binutils" ,xbinutils)
|
2017-01-02 20:07:59 +01:00
|
|
|
|
,@(if (hurd-triplet? target)
|
2016-05-28 17:32:04 +02:00
|
|
|
|
`(("cross-mig"
|
|
|
|
|
,@(assoc-ref (package-native-inputs xheaders)
|
2018-12-16 15:36:48 +01:00
|
|
|
|
"cross-mig"))
|
|
|
|
|
("hurd-magic-pid-patch"
|
|
|
|
|
,(search-patch "glibc-hurd-magic-pid.patch")))
|
2016-05-28 17:32:04 +02:00
|
|
|
|
'())
|
|
|
|
|
,@(package-inputs libc) ;FIXME: static-bash
|
|
|
|
|
,@(package-native-inputs libc)))))))
|
|
|
|
|
|
2019-05-07 00:21:43 +02:00
|
|
|
|
(define* (native-libc target
|
|
|
|
|
#:optional
|
|
|
|
|
(libc glibc))
|
2016-05-28 17:32:04 +02:00
|
|
|
|
(if (target-mingw? target)
|
2019-08-14 19:46:53 +02:00
|
|
|
|
(let ((machine (substring target 0 (string-index target #\-))))
|
|
|
|
|
(make-mingw-w64 machine))
|
2019-05-07 00:21:43 +02:00
|
|
|
|
libc))
|
2016-05-28 17:32:04 +02:00
|
|
|
|
|
2019-05-07 00:21:43 +02:00
|
|
|
|
(define* (cross-newlib? target
|
|
|
|
|
#:optional
|
|
|
|
|
(libc glibc))
|
|
|
|
|
(not (eq? (native-libc target libc) libc)))
|
2013-02-27 09:38:11 +01:00
|
|
|
|
|
|
|
|
|
|
2016-11-04 15:29:01 +01:00
|
|
|
|
;;; Concrete cross tool chains are instantiated like this:
|
|
|
|
|
;;
|
|
|
|
|
;; (define-public xgcc-armhf
|
|
|
|
|
;; (let ((triplet "arm-linux-gnueabihf"))
|
2013-02-27 09:38:11 +01:00
|
|
|
|
;; (cross-gcc triplet
|
2017-05-26 09:58:22 +02:00
|
|
|
|
;; #:xbinutils (cross-binutils triplet)
|
|
|
|
|
;; #:libc (cross-libc triplet))))
|
2016-11-04 15:29:01 +01:00
|
|
|
|
;;
|
|
|
|
|
;;; We don't do that here because we'd be referring to bindings from (gnu
|
|
|
|
|
;;; packages gcc) from the top level, which doesn't play well with circular
|
|
|
|
|
;;; dependencies among modules.
|