forked from cisco/ChezScheme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.zuo
542 lines (487 loc) · 23.7 KB
/
build.zuo
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
#lang zuo
(require (rename-in "makefiles/boot.zuo"
[boot-file-names boot:boot-file-names]
[cross-build-boot boot:cross-build-boot])
(only-in "s/reboot.zuo"
reboot)
(only-in "s/build.zuo"
[targets-at s-targets-at]
all-src-names)
(only-in "c/build.zuo"
[targets-at c-targets-at])
"makefiles/lib.zuo")
(provide-targets targets-at)
;; This is the main entry point to the Chez Scheme build. A build
;; directory's "main.zuo" and a workarea directory's "main.zuo" both
;; call `targets-at` with an `at-dir` that points to the workarea
;; directory.
(define (targets-at at-dir [vars (hash)])
(define Mf-config (at-dir "Mf-config"))
(unless (file-exists? Mf-config)
(error "no \"Mf-config\" - not running from a build directory?"))
(define config (config-file->hash Mf-config vars))
(define m (hash-ref config 'm))
(define mboot (hash-ref config 'mboot m))
;; subdirectories where we create a "main.zuo" that bounce to
;; "build.zuo" in the source area
(define bounce-dirs
'("c" "s" "mats" "examples"))
(define bounce-files
(map (lambda (d) (at-dir d "main.zuo")) bounce-dirs))
(define bounce-scripts
(map (lambda (d)
(~a "#lang zuo\n"
(~s `(define config (config-file->hash (at-source ".." "Mf-config")))) "\n"
(~s `(build/command-line* (dynamic-require (build-path ((make-at-dir (at-source ".." ".."))
(hash-ref config 'srcdir))
,d
"build.zuo")
'targets-at)
at-source))))
bounce-dirs))
(define record-from-pb?
(directory-exists? (at-source "boot" "pb")))
(define boot-from-pb?
(and (equal? (hash-ref config 'enableFrompb #f) "yes")
(not (equal? m "pb"))
record-from-pb?))
(define (find-boot-src-dir mboot always-use-here?)
(let ([here-dir (at-dir ".." "boot" mboot)])
(if (or always-use-here?
(directory-exists? here-dir))
here-dir
(at-source "boot" mboot))))
(define boot-src-dir
(find-boot-src-dir mboot boot-from-pb?))
(define boot-file-names
(append
boot:boot-file-names
;; extra boot files from source
(let ([config-file (build-path boot-src-dir "Mf-config")])
(if (file-exists? config-file)
(shell->strings (hash-ref (config-file->hash config-file) 'extraBootFiles ""))
'()))))
(define boot-files
(map (lambda (file) (at-dir "boot" m file)) boot-file-names))
(define boot-src-files
(and boot-from-pb?
(map (lambda (file) (build-path boot-src-dir file))
boot:boot-file-names)))
(define pb-files
(and record-from-pb?
(let ([pb-dir (find-boot-src-dir "pb" #f)])
(map (lambda (file) (build-path pb-dir file))
boot:boot-file-names))))
(define all-src-files
(map (lambda (n) (at-source "s" n))
all-src-names))
(define via-pb-files
(and record-from-pb?
(append pb-files all-src-files)))
(define clean-links-stamp (at-dir ".no-links"))
(define (build-kernel-only?)
(string=? (hash-ref config 'buildKernelOnly "no") "yes"))
(define (check-not-kernel-only)
(when (build-kernel-only?)
(error "target does not apply to a kernel-only configuration")))
;; besides `<machine>` argument, accepts `--host-scheme <command>`
;; or `--host-workarea <dir>", and recognizes `SCHEME=...` if neither
;; flag is provided; also recognizes "--xpatch" before anything else
;; to request that "xpatch" is left in an "xc-" directory
(define (parse-boot-args orig-args default-m-key k)
(define xpatch?
(and (pair? orig-args)
(equal? "--xpatch" (car orig-args))))
(define args (if xpatch? (cdr orig-args) orig-args))
(define host-scheme-via-flag
(and (pair? args)
(equal? (car args) "--host-scheme")
(pair? (cdr args))
(cadr args)))
(define host-workarea
(and (not host-scheme-via-flag)
(pair? args)
(equal? (car args) "--host-workarea")
(pair? (cdr args))
(cadr args)))
(define host-scheme (or host-scheme-via-flag
(and (not host-workarea)
(let ([s (hash-ref config 'SCHEME #f)])
(and (not (equal? s ""))
s)))))
(define rest-args (if (or host-workarea
host-scheme-via-flag)
(cddr args)
args))
(unless (<= (length rest-args) 1) (error "expected optional <machine>" args))
(define xm (if (null? rest-args)
(hash-ref config default-m-key m)
(car rest-args)))
(define host-m (if host-scheme
(ask-scheme-machine host-scheme)
m))
(k xm host-m host-scheme host-workarea xpatch?))
;; Cross-builds for a machine type that is specified as an argument;
;; the machine type defaults to the `defaultm` configuration entry, and
;; that default is normally useful if the current machine type is "pb"
(define (cross-build-boot token args ccopts make-targets record-dep?)
(parse-boot-args
args
'defaultm
(lambda (xm m host-scheme host-workarea xpatch?)
(unless (or host-scheme host-workarea)
(check-not-kernel-only))
(alert (~a "building boot files for " xm " using " m))
(boot:cross-build-boot token ccopts make-targets xpatch?
xm host-scheme host-workarea
at-dir config vars m)
(when record-dep?
(record-build-success token xm m host-scheme host-workarea)))))
(define (cross-build-boot/safe+examples token args)
(cross-build-boot token args (hash 'o "2" 'd "3" 'i "t") '("all" "examples") #t))
(define (cross-reboot token args)
(parse-boot-args
args
'm
(lambda (xm m host-scheme host-workarea xpatch?)
(when xpatch? (error "cannot generate xpatch in reboot mode"))
(define scheme (or host-scheme
(if host-workarea
(build-path host-workarea m "bin" m (.exe "scheme"))
(.exe "scheme"))))
(define options (if host-workarea
(hash 'env
(cons "SCHEMEHEAPDIRS"
(path->complete-path (build-path host-workarea "boot" m))))
(hash)))
(reboot m xm scheme (hash 'shell-options options
'out-dir (at-dir "..")
'work-dir (at-dir "..")))
(record-build-success token xm m host-scheme host-workarea))))
(define (record-build-success token xm m host-scheme host-workarea)
;; record success so boot files will not be rebuilt from pb
(when (and record-from-pb?
(not (equal? xm "pb")))
(build-boot-target token xm m host-scheme host-workarea void)))
;; used to create a target for "quickboot", or just record dependency for other modes
;; of building boot files
(define (build-boot-target token xm m host-scheme host-workarea thunk)
(define (at-boot name) (at-dir "../boot" xm name))
(define (host-boot-files)
(cond
[host-workarea
(map (lambda (file) (build-path host-workarea "boot" m file)) boot-file-names)]
[host-scheme '()]
[else boot-files]))
(build (target (at-boot (car boot-file-names))
(lambda (path token)
(rule (if record-from-pb?
;; declare dependency on pb instead of host,
;; so we don't rebuild via pb:
via-pb-files
;; otherwise, bootquick again if host changes:
(append (host-boot-files)
all-src-files))
thunk))
(hash 'co-outputs (map at-boot (cdr boot-file-names))
'precious? #t
'db-dir (if record-from-pb?
;; record dependency with pb
(let ([dir (at-dir "../pb")])
(mkdir-p dir)
dir)
(at-dir "."))))
token))
(define (run-tests token name [vars vars])
(check-not-kernel-only)
(build (find-target name
((dynamic-require (at-source "mats/build.zuo") 'targets-at)
(make-at-dir (at-dir "mats"))
vars))
token))
(define stexlib
(let ([configured (hash-ref config 'STEXLIB "")]
[env (assoc "STEXLIB" (hash-ref (runtime-env) 'env))])
(cond
[(not (equal? "" configured))
configured]
[env
(cdr env)]
[else
(at-source "stex")])))
(define stex-sources
(source-tree stexlib))
(define doc-project-names
;; happily, the name of the subdirectory is the same as
;; value assigned to `x` in the corresponding makefile
'("csug" "release_notes"))
(define doc-install-dir-keys
;; in parallel to doc-project-names
'(InstallCSUG InstallReleaseNotes))
(define (targets-for-doc name install-dir-key)
(define doc-dir (at-dir ".." name)) ;; ".." goes out of the workarea
(define mf-in (at-source "makefiles" (~a "Makefile-" name ".in")))
(define mf-out (build-path doc-dir "Makefile"))
(define name-sym (string->symbol name))
(define (run-make target)
(check-not-kernel-only)
(define (->rel-shell pth)
(string->shell (find-relative-path doc-dir pth)))
(shell/wait "make"
(~a "m=" m)
(~a "srcdir=" (->rel-shell (at-source name)))
(~a "installdir="
(->rel-shell (hash-ref config install-dir-key)))
(~a "STEXLIB=" (->rel-shell stexlib))
target
(hash 'dir doc-dir)))
`([:target ,mf-out (,mf-in)
,(lambda (path token)
(mkdir-p doc-dir)
(cp mf-in mf-out))]
[:target ,name-sym (,mf-out
,@(source-tree (at-source name))
,@stex-sources)
,(lambda (token . args)
(run-make ""))]
[:target ,(string->symbol (~a "install-" name)) (,name-sym)
,(lambda (token . args)
(run-make "install"))]))
(define (check-boot-file-version)
(define src-ver (source-version))
(define boot-ver (boot-files-version (at-dir "boot" m)))
(unless (string-ci=? src-ver boot-ver)
(error (~a "version " boot-ver " in boot and header files for "
m
" do not match source version " src-ver "; rebuild boot files"))))
(define the-targets
(make-targets
`(;; Builds the kernel (C code) and boot files (Scheme code):
[:target build (workarea kernel)
,(lambda (token)
(unless (build-kernel-only?)
(build (find-target "bootstrap" (s-targets-at (make-at-dir (at-dir "s")) vars))
token)))]
;; Builds just the kernel (C code):
[:target kernel (workarea)
,(lambda (token)
(build (find-target "build" (c-targets-at (make-at-dir (at-dir "c")) vars))
token))]
[:target install ()
,(lambda (token)
(check-not-kernel-only)
((dynamic-require (at-source "makefiles/install.zuo") 'install)
at-dir
(hash 'DESTDIR (hash-ref config 'DESTDIR ""))))]
[:target uninstall ()
,(lambda (token)
(check-not-kernel-only)
((dynamic-require (at-source "makefiles/install.zuo") 'install)
at-dir
(hash)
#t))]
[:target bintar ()
,(lambda (token)
((dynamic-require (at-source "makefiles/bintar.zuo") 'make-bintar)
at-dir
m))]
[:target run ()
,(lambda (token . args)
(cond
[(equal? (hash-ref config 'exeSuffix "") ".html")
;; must be an Emscripten build...
(shell (build-shell "cd" (string->shell (at-dir "bin" m))
"&& node scheme.js"))]
[else
(define t (find-target "run" (s-targets-at (make-at-dir (at-dir "s")) vars)))
(build (command-target->target t args)
token)]))
:command]
;; See `cross-build-boot`: builds cross-compiler in unsafe mode, skips examples,
;; only rebuilds if needed
[:target bootquick ()
,(lambda (token . args)
(check-not-kernel-only)
(parse-boot-args
args
'defaultm
(lambda (xm m host-scheme host-workarea xpatch?)
(build-boot-target
token xm m host-scheme host-workarea
(lambda ()
(unless (or host-scheme host-workarea)
(build/dep (find-target "kernel" the-targets) token))
(cross-build-boot token args (hash) '("all") #f))))))
:command]
;; See `cross-build-boot`: builds cross-compiler in safe mode, includes examples
[:target boot ()
,(lambda (token . args)
(cross-build-boot/safe+examples token args))
:command]
[:target bootfiles (build)
,(lambda (token)
(check-not-kernel-only)
(for-each (lambda (mach)
(cross-build-boot/safe+examples token (list mach)))
(unique (append (ls (at-source "boot"))
(ls (at-dir "../boot"))))))]
[:target reboot ()
,(lambda (token . args)
(cross-reboot token args))
:command]
[:target bootpbchunk ()
,(lambda (token . args)
(build (command-target->target (find-target "bootpbchunk"
(s-targets-at (make-at-dir (at-dir "s")) vars))
args)
token))
:command]
[:target test-one (build) ,(lambda (token) (run-tests token "test-one"))]
[:target test-some-fast (build) ,(lambda (token) (run-tests token "test-some-fast"))]
[:target test-some (build) ,(lambda (token) (run-tests token "test-some"))]
[:target test (build) ,(lambda (token) (run-tests token "test"))]
[:target test-more (build) ,(lambda (token) (run-tests token "test-more"))]
[:target coverage (kernel)
,(lambda (token)
(check-not-kernel-only)
(when (glob-match? "t*" m)
(error "coverage doesn't work with threads enabled"))
(let ([vars (hash-set vars 'c "t")])
(build (find-target "bootstrap" (s-targets-at (make-at-dir (at-dir "s"))
(hash-set vars 'p "t")))
token)
(run-tests token "all" vars)
(run-tests token "coverage" vars)))]
;; The `reset` target discards the results in "boot" and puts back links to (or copies of)
;; to the versions that are used to seed the build
[:target reset ()
,(lambda (token)
(for-each (lambda (f) (when (file-exists? f) (rm f))) boot-files)
(build (map (lambda (f) (find-target f the-targets)) boot-files)
token))]
,@(apply append (map targets-for-doc
doc-project-names
doc-install-dir-keys))
[:target docs (csug release_notes)
,void]
[:target install-docs (install-csug install-release_notes)
,void]
[:target rpm ()
,(lambda (token)
(mkdir-p (at-dir "rpm"))
(cp/ln (at-source "rpm/Makefile") (at-dir "rpm/Makefile"))
(shell/wait (hash-ref config 'MAKE "make")
(hash 'dir (at-dir "rpm"))))]
[:target pkg ()
,(lambda (token)
(mkdir-p (at-dir "pkg"))
(cp/ln (at-source "pkg/Makefile") (at-dir "pkg/Makefile"))
(cp/ln (at-source "pkg/rmpkg") (at-dir "pkg/rmpkg"))
(shell/wait (hash-ref config 'MAKE "make")
(hash 'dir (at-dir "pkg"))))]
,@(if (eq? 'windows (system-type))
`([:target all-dlls (build)
,(lambda (token)
(for-each*
'("dll" "static")
(lambda (runtimeAs)
(for-each*
'("dll" "exe")
(lambda (linkAs)
(fd-write (fd-open-output 'stdout)
(~a "Also buidling variant " runtimeAs " " linkAs "...\n"))
(define var-dir (if (and (equal? runtimeAs (hash-ref config 'runtimeAs #f))
(equal? linkAs (hash-ref config 'linkAs #f)))
;; same configuration as executable, but maybe
;; produces a differently named DLL due to 'productAs:
(at-dir "c")
(at-dir (~a "c-" runtimeAs "-" linkAs))))
(mkdir-p var-dir)
(build (find-target "lib" (c-targets-at (make-at-dir var-dir)
(hash-set* vars
'runtimeAs runtimeAs
'linkAs linkAs
'productAs "dll")))
token))))))])
'())
[:target clean ()
,(lambda (token)
(define keeps '("Mf-config" "main.zuo"))
(for-each (lambda (name)
(unless (member name keeps)
(rm* (at-dir name))))
(ls (at-dir "."))))]
;; Internal targets ----------------------------------------
;; Builds out an initial workarea, with links to book files
[:target workarea (,@bounce-files ,@boot-files ,clean-links-stamp)
,(lambda (token)
(check-boot-file-version))
:quiet]
,@(map (lambda (dir file script)
`[:target ,file (,(input-data-target 'script script))
,(lambda (path token)
(mkdir-p (at-dir dir))
(display-to-file script path :truncate))])
bounce-dirs
bounce-files
bounce-scripts)
,@(map (lambda (name dest)
(define src (build-path boot-src-dir name))
;; If `dest` doesn't exist, use `src`. If `dest` exists and `src` is newer
;; than when `dest` was first created, then use `src` in that case, too.
;; Otherwise, leave `dest` alone on the assumption that it's a newer
;; version bootstrapped from `src`.
`[:target ,dest (,src)
,(lambda (dest token)
(define orig-sha1-file (~a dest ".orig-hash"))
(define src-hash (file-sha256 src token))
(unless (and (file-exists? dest)
(file-exists? orig-sha1-file)
(equal? src-hash
(file->string orig-sha1-file)))
(mkdir-p (at-dir "boot" m))
(display-to-file src-hash orig-sha1-file :truncate)
(cp/ln src dest)))])
boot-file-names
boot-files)
,@(if boot-from-pb?
`([:target (,@boot-src-files) (,@via-pb-files)
,(lambda (first-path token)
(check-machine-type m)
(alert (~a "checking boot files for " m " against pb"))
(define pb-dir (at-dir ".." "pb"))
(mkdir-p pb-dir)
(define cross? #t)
(define Mf-config
(cond
[(string=? (hash-ref config 'crossCompile "no") "yes")
(shell/wait (build-raw-path (at-source ".") "configure")
"--nomakefile"
"--pb")
(build-path pb-dir "Mf-config")]
[else (at-dir "Mf-config")]))
(define old-config (map (lambda (s) (string-trim (string-trim s "\r")))
(string-split (file->string Mf-config) "\n")))
(define m-line (~a "m=" m))
(define mboot-line (~a "mboot=" mboot))
(define new-config (cons "m=pb"
(filter (lambda (s) (not (or (string=? s m-line)
(string=? s mboot-line))))
old-config)))
(display-to-file (string-join new-config "\n") (build-path pb-dir "Mf-config")
:truncate)
(build (command-target->target (find-target "bootquick"
(targets-at (make-at-dir pb-dir) vars))
(list m))
token))
:precious])
'())
[:target ,clean-links-stamp ()
,(lambda (path token)
;; clear out links from old build system that break the new build
(clean-links (at-dir))
(display-to-file "done" path :truncate))]
;; Needed to keep the initial-boot-file info here instead of in "boot"
[:db-dir ,(at-dir ".")]
#;(end-make-targets))))
the-targets)