aboutsummaryrefslogtreecommitdiff
path: root/build-aux/compile-all.scm
blob: 9ffbce43ad1eaf746f4fecef076545663cd57bd9 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
;;; Copyright © 2016, 2017, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
;;;
;;; 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/>.

(use-modules (ice-9 format)
             (ice-9 match)
             (ice-9 threads)
             (srfi srfi-1)
             (guix build compile)
             (guix build utils))

(define host (getenv "host"))
(define srcdir (getenv "srcdir"))

(define (relative-file file)
  (if (string-prefix? (string-append srcdir "/") file)
      (string-drop file (+ 1 (string-length srcdir)))
      file))

(define (file-mtime<? f1 f2)
  (< (stat:mtime (stat f1))
     (stat:mtime (stat f2))))

(define (scm->go file)
  (let* ((relative (relative-file file))
         (without-extension (string-drop-right relative 4)))
    (string-append without-extension ".go")))

(define (file-needs-compilation? file)
  (let ((go (scm->go file)))
    (or (not (file-exists? go))
        (file-mtime<? go file))))

(define* (parallel-job-count #:optional (flags (getenv "MAKEFLAGS")))
  "Return the number of parallel jobs as determined by FLAGS, the flags passed
to 'make'."
  (match flags
    (#f (current-processor-count))
    (flags
     (let ((initial-flags (string-tokenize flags)))
       (let loop ((flags initial-flags))
         (match flags
           (()
            ;; Note: GNU make prior to version 4.2 would hide "-j" flags from
            ;; $MAKEFLAGS.  Thus, check for a "--jobserver" flag here and
            ;; assume we're using all cores if specified.
            (if (any (lambda (flag)
                       (string-prefix? "--jobserver" flag))
                     initial-flags)
                (current-processor-count)         ;GNU make < 4.2
                1))                               ;sequential make
           (("-j" (= string->number count) _ ...)
            (if (integer? count)
                count
                (current-processor-count)))
           ((head tail ...)
            (if (string-prefix? "-j" head)
                (match (string-drop head 2)
                  (""
                   (current-processor-count))
                  ((= string->number count)
                   (if (integer? count)
                       count
                       (current-processor-count))))
                (loop tail)))))))))

(define (parallel-job-count*)
  ;; XXX: Work around memory requirements not sustainable on i686 above '-j4'
  ;; or so: <https://bugs.gnu.org/40522>.
  (let ((count (parallel-job-count)))
    (if (string-prefix? "i686" %host-type)
        (min count 4)
        count)))

(define (% completed total)
  "Return the completion percentage of COMPLETED over TOTAL as an integer."
  (inexact->exact (round (* 100. (/ completed total)))))

;; Install a SIGINT handler to give unwind handlers in 'compile-file' an
;; opportunity to run upon SIGINT and to remove temporary output files.
(sigaction SIGINT
  (lambda args
    (exit 1)))

(match (command-line)
  ((_ "--total" (= string->number grand-total)
      "--completed" (= string->number processed)
      . files)
   ;; GRAND-TOTAL is the total number of .scm files in the project; PROCESSED
   ;; is the total number of .scm files already compiled in previous
   ;; invocations of this script.
   (catch #t
     (lambda ()
       (let* ((to-build  (filter file-needs-compilation? files))
              (processed (+ processed
                            (- (length files) (length to-build)))))
         (compile-files srcdir (getcwd) to-build
                        #:workers (parallel-job-count*)
                        #:host host
                        #:report-load (lambda (file total completed)
                                        (when file
                                          (format #t "[~3d%] LOAD     ~a~%"
                                                  (% (+ 1 completed
                                                          (* 2 processed))
                                                     (* 2 grand-total))
                                                  file)
                                          (force-output)))
                        #:report-compilation (lambda (file total completed)
                                               (when file
                                                 (format #t "[~3d%] GUILEC   ~a~%"
                                                         (% (+ total completed 1
                                                                     (* 2 processed))
                                                            (* 2 grand-total))
                                                         (scm->go file))
                                                 (force-output))))))
     (lambda _
       (primitive-exit 1))
     (lambda args
       ;; Try to report the error in an intelligible way.
       (let* ((stack   (make-stack #t))
              (frame   (if (> (stack-length stack) 1)
                           (stack-ref stack 1)    ;skip the 'throw' frame
                           (stack-ref stack 0)))
              (ui      (false-if-exception
                        (resolve-module '(guix ui))))
              (report  (and ui
                            (false-if-exception
                             (module-ref ui 'report-load-error)))))
         (if report
             (report (or (and=> (current-load-port) port-filename) "?.scm")
                     args frame)
             (begin
               (print-exception (current-error-port) frame
                                (car args) (cdr args))
               (display-backtrace stack (current-error-port)))))))))
....and use it in packages that do not yet support 3.0. * gnu/packages/tls.scm (openssl): Rename to ... (openssl-1.1): ... this. (openssl/fixed): Inherit from OPENSSL-1.1. (openssl-3.0): Likewise. (openssl): Turn into alias for OPENSSL-1.1. * gnu/packages/ruby.scm (ruby-2.6)[inputs]: Change from OPENSSL to OPENSSL-1.1. (ruby-3.0)[inputs]: Change "openssl" input to OPENSSL. (ruby-3.1): Inherit from RUBY-3.0. * gnu/packages/python.scm (python-2.7)[inputs]: Change from OPENSSL to OPENSSL-1.1. (python-3.9)[inputs]: Replace "openssl" with OPENSSL. * gnu/packages/python-crypto.scm (python-cryptography)[inputs]: Change from OPENSSL to OPENSSL-1.1. * gnu/packages/databases.scm (mariadb)[inputs]: Likewise. * gnu/packages/node.scm (node)[native-inputs, inputs]: Likewise. (node-lts)[native-inputs]: Likewise. Marius Bakke 2022-08-05gnu: openssl: Keep .dll.a files in main output....* gnu/packages/tls.scm (openssl) [phase move-static-libraries]: Do not move .dll.a files to the static output when targetting mingw. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Vivien Kraus 2022-08-05gnu: openssl: Use 'target-*' predicates from (guix utils)....* gnu/packages/tls.scm (target->openssl-target): Rewrite in terms of the 'target-*' predicates. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Vivien Kraus 2022-08-05gnu: openssl: Cross-compile to mingw....* gnu/packages/tls.scm (target->openssl-target): Add cases for mingw and mingw64. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Vivien Kraus 2022-08-01gnu: gnutls: Add 3.7.7....* gnu/packages/tls.scm (gnutls-latest): New variable. Ludovic Courtès 2022-07-06gnu: OpenSSL 3.0.0: Update to 3.0.5 [fixes CVE-2022-2097 and CVE-2022-2274]....https://www.cve.org/CVERecord?id=CVE-2022-2097 https://www.cve.org/CVERecord?id=CVE-2022-2274 * gnu/packages/tls.scm (openssl-3.0): Update to 3.0.5. Leo Famulari 2022-07-06gnu: OpenSSL: Update to 1.1.1q [fixes CVE-2022-2097]....https://www.cve.org/CVERecord?id=CVE-2022-2097 * gnu/packages/tls.scm (openssl/fixed): Update to 1.1.1q. Leo Famulari 2022-06-27gnu: openssl: Update to 1.1.1p [security fixes]....* gnu/packages/tls.scm (openssl/fixed): Update to 1.1.1p. Efraim Flashner 2022-06-26gnu: openssl-3.0: Update to 3.0.4....* gnu/packages/tls.scm (openssl-3.0): Update to 3.0.4. Efraim Flashner 2022-06-19gnu: p11-kit@0.24: Update to 0.24.1....* gnu/packages/tls.scm (p11-kit-next): Update to 0.24.1. Tobias Geerinckx-Rice 2022-06-17gnu: python-acme: Add python-chardet to propagated-inputs....* gnu/packages/tls.scm (python-acme)[propagated-inputs]: Add it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Josselin Poiret 2022-06-14gnu: python-acme, certbot: Update to 1.28.0....* gnu/packages/tls.scm (python-acme): Update to 1.28.0. [arguments]: Override check phase. (certbot)[source]: Update hash. Marius Bakke 2022-05-16Merge branch 'master' into stagingEfraim Flashner 2022-05-15gnu: perl-net-ssleay: Update to 1.92....* gnu/packages/tls.scm (perl-net-ssleay): Update to 1.92. Efraim Flashner 2022-05-15gnu: openssl-3.0: Update to 3.0.3....* gnu/packages/tls.scm (openssl-3.0): Update to 3.0.3. Efraim Flashner 2022-05-13gnu: openssl: Use $SSL_CERT_DIR/$SSL_CERT_FILE....* gnu/packages/tls.scm (openssl)[native-search-paths]: Use the $SSL_CERT_DIR/$SSL_CERT_FILE from (guix search-paths) instead of a local copy. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Maxime Devos 2022-05-02gnu: s2n: Link to aws-lc as libcrypto dependency....* gnu/packages/tls.scm (s2n): [arguments]: Fix for openssl as replacement input for aws-lc. [propagated-inputs]: Add aws-lc and remove openssl. [supported-systems]: Only support x86_64-linux. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2022-05-02gnu: aws-lc: Fix checksum and enable tests....* gnu/packages/tls.scm (aws-lc): [source]: Fix checksum. [arguments]: Enable tests. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2022-04-20gnu: aws-lc: Update to 1.0.2....* gnu/packages/tls.scm (aws-lc): Update to 1.0.2. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2022-04-20gnu: s2n: Update to 1.3.10....* gnu/packages/tls.scm (s2n): Update to 1.3.10. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan 2022-04-12gnu: libressl: Update to 3.3.6....* gnu/packages/tls.scm (libressl): Update to 3.3.6. Liliana Marie Prikler 2022-04-01gnu: libressl: Add 'release-monitoring-url' property....* gnu/packages/tls.scm (libressl)[properties]: New field. Ludovic Courtès 2022-03-16gnu: OpenSSL 3: Update to 3.0.2 [fixes CVE-2022-0778]....For more information about this vulnerability: https://www.openssl.org/news/secadv/20220315.txt * gnu/packages/tls.scm (openssl-3.0): Update to 3.0.2. Leo Famulari 2022-03-16gnu: OpenSSL: Update to 1.1.1n [fixes CVE-2022-0778]....For more information about this vulnerability: https://www.openssl.org/news/secadv/20220315.txt * gnu/packages/tls.scm (openssl/fixed): Update to 1.1.1n. Leo Famulari 2022-01-30gnu: Remove OpenSSL 1.0....This package no longer has any users in Guix. * gnu/packages/tls.scm (openssl-1.0): Remove variable. Marius Bakke 2022-01-30gnu: OpenSSL: Add 3.0....* gnu/packages/tls.scm (openssl-3.0): New variable. * gnu/packages/patches/openssl-3.0-c-rehash-in.patch: New file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. Marius Bakke 2022-01-26gnu: openssl: Update to 1.1.1m [security fixes]....* gnu/packages/tls.scm (openssl/fixed): New variable. (openssl)[replacement]: New field. Efraim Flashner