aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2018-08-24gnu: r-synchronicity: Update to 1.3.5....Tobias Geerinckx-Rice
2018-08-24gnu: guile-lib: Update to 0.2.6.1....Tobias Geerinckx-Rice
2018-08-24gnu: tuxguitar: Update to 1.5.2....Tobias Geerinckx-Rice
2018-08-24gnu: libgig: Update to 4.1.0....Tobias Geerinckx-Rice
2018-08-24gnu: denemo: Use INVOKE....Tobias Geerinckx-Rice
2018-08-24gnu: ncmpc: Update to 0.29....Tobias Geerinckx-Rice
2018-08-24gnu: parallel: Update to 20180822....Ludovic Courtès
2018-08-24gnu: boost: Move 1.59.0 definition to boost.scm....Ludovic Courtès
2018-08-23gnu: r-devtools: Update to 1.13.6....Tobias Geerinckx-Rice
2018-08-23gnu: drumkv1: Update to 0.9.2....Tobias Geerinckx-Rice
2018-08-23gnu: synthv1: Update to 0.9.2....Tobias Geerinckx-Rice
2018-08-23gnu: samplv1: Update to 0.9.2....Tobias Geerinckx-Rice
2018-08-23gnu: padthv1: Update to 0.9.2....Tobias Geerinckx-Rice
2018-08-23gnu: Update home pages for the V1 synth family....Tobias Geerinckx-Rice
2018-08-23gnu: Add r-a3....pimi
2018-08-23gnu: Add r-manipulatewidget....pimi
2018-08-23gnu: Add r-slam....pimi
2018-08-23gnu: Add r-abcanalysis....pimi
2018-08-23gnu: Add r-miniui....pimi
2018-08-23gnu: qjackctl: Update to 0.5.3....Tobias Geerinckx-Rice
2018-08-23gnu: byobu: Update home page....Tobias Geerinckx-Rice
2018-08-23gnu: byobu: Update to 5.127....Tobias Geerinckx-Rice
2018-08-23gnu: wine-staging-patchset-data: Don't use unstable archive....Tobias Geerinckx-Rice
2018-08-23gnu: yubico-piv-tool: Update to 1.6.1....Tobias Geerinckx-Rice
2018-08-23gnu: r-car: Update to 3.0-1....Tobias Geerinckx-Rice
2018-08-23gnu: r-digest: Update to 0.6.16....Tobias Geerinckx-Rice
2018-08-23gnu: r-dplyr: Update to 0.7.6....Tobias Geerinckx-Rice
2018-08-23gnu: r-rcpp: Update to 0.12.18....Tobias Geerinckx-Rice
2018-08-23gnu: duplicity: Update to 0.7.18....Tobias Geerinckx-Rice
2018-08-23gnu: darcs: Update to 2.14.1....Arun Isaac
2018-08-23gnu: ghc-zlib: Update to 0.6.2....Arun Isaac
2018-08-23gnu: ghc-quickcheck-instances: Update to 0.3.18....Arun Isaac
2018-08-23gnu: ghc-graphviz: Update to 2999.20.0.2....Arun Isaac
2018-08-23gnu: ghc-wl-pprint-text: Update to 1.2.0.0....Arun Isaac
2018-08-23gnu: ghc-base-compat: Update to 0.10.4....Arun Isaac
2018-08-23gnu: ghc-fgl-arbitrary: Allow building with newer hspec....Arun Isaac
2018-08-23gnu: ghc-shelly: Update to 1.8.1....Arun Isaac
2018-08-23gnu: ghc-sandi: Update to 0.4.2....Arun Isaac
2018-08-23gnu: ghc-fgl: Update to 5.6.0.0....Arun Isaac
2018-08-23gnu: guile-redis: Remove duplicate 'home-page' field....Mark H Weaver
2018-08-23gnu: guile-gcrypt: Remove duplicate 'home-page' field....Mark H Weaver
2018-08-23gnu: linux-libre: Update to 4.18.4....Mark H Weaver
2018-08-23gnu: linux-libre@4.14: Update to 4.14.66....Mark H Weaver
2018-08-23gnu: linux-libre@4.9: Update to 4.9.123....Mark H Weaver
2018-08-23gnu: linux-libre@4.4: Update to 4.4.151....Mark H Weaver
2018-08-23gnu: Add guile-gcrypt....Ludovic Courtès
2018-08-22gnu: perl-dbd-mysql: Update to 4.046....Leo Famulari
2018-08-22gnu: python-pkgconfig: Enable tests....Paul Garlick
2018-08-22gnu: python-pkgconfig: Update to 1.3.1....Paul Garlick
2018-08-22gnu: soundtouch: Fix CVE-2018-{1000223,14044,14045}....Leo Famulari
ch (cut setenv <> cpath) (cons "CROSS_LIBRARY_PATH" %gcc-cross-include-paths)))))) (when libc (setenv "CROSS_LIBRARY_PATH" (string-append libc "/lib" ":" libc "/" target "/lib"))) (setenv "CPP" (string-append gcc "/bin/cpp")) (for-each (lambda (var) (and=> (getenv var) (lambda (value) (let* ((path (search-path-as-string->list value)) (native-path (list->search-path-as-string (remove cross? path) ":"))) (setenv var native-path))))) (cons "LIBRARY_PATH" %gcc-include-paths)) #t)) (define (install-strip . _) "Install a stripped GCC." ;; Unlike our 'strip' phase, this will do the right thing for ;; cross-compilers. (invoke "make" "install-strip")) (define* (cross-gcc-build-phases target #:optional (phases %standard-phases)) "Modify PHASES to include everything needed to build a cross-GCC for TARGET, a target triplet." (modify-phases phases (add-before 'configure 'set-cross-path ;; This mingw32 target checking logic should match that of target-mingw? ;; in (guix utils), but (guix utils) is too large too copy over to the ;; build side entirely and for now we have no way to select variables to ;; copy over. See (gnu packages cross-base) for more details. (if (string-suffix? "-mingw32" target) (cut set-cross-path/mingw #:target target <...>) set-cross-path)) (add-after 'install 'make-cross-binutils-visible (cut make-cross-binutils-visible #:target target <...>)) (replace 'install install-strip))) ;;; cross-toolchain.scm ends here