3 exec ${GUILE-guile} --no-auto-compile -L . -L guile -C . -C guile -s "$0" ${1+"$@"}
6 (use-modules (srfi srfi-26)
9 ;; FIXME: .go dependencies
10 ;; workaround: always update .go before calculating hashes
11 ;;(use-modules ((mes make) #:select (sytem**)))
15 "guix/shell-utils.scm"
16 "language/c99/compiler.scm"
17 "language/c99/info.scm"
23 (define %go-files (map (compose (cut string-append <> ".go") (cut string-drop-right <> 4)) %scm-files))
25 (setenv "host" %host-type)
26 (with-directory-excursion "guile"
27 (apply system* `("guile"
32 "../build-aux/compile-all.scm"
35 (use-modules (srfi srfi-1)
36 (ice-9 curried-definitions)
40 (add-target (bin.mescc "stage0/exit-42.c" #:libc #f))
41 (add-target (check "stage0/exit-42.0-guile" #:signal 11)) ; FIXME: segfault
43 (add-target (cpp.mescc "mlibc/mini-libc-mes.c"))
44 (add-target (compile.mescc "mlibc/mini-libc-mes.c"))
46 (add-target (bin.mescc "stage0/exit-42.c" #:libc mini-libc-mes.E))
47 (add-target (check "stage0/exit-42.mini-guile" #:exit 42))
49 (add-target (cpp.mescc "mlibc/libc-mes.c"))
50 (add-target (compile.mescc "mlibc/libc-mes.c"))
52 (add-target (bin.mescc "stage0/exit-42.c"))
53 (add-target (check "stage0/exit-42.guile" #:exit 42))
55 (define* (add-scaffold-test name #:key (exit 0) (libc libc-mes.E))
56 (add-target (bin.gcc (string-append "scaffold/tests/" name ".c") #:libc #f))
57 (add-target (check (string-append "scaffold/tests/" name ".mlibc-gcc") #:exit exit))
59 (add-target (bin.mescc (string-append "scaffold/tests/" name ".c") #:libc libc))
60 (add-target (check (string-append "scaffold/tests/" name "." (cond ((not libc) "0-")
61 ((eq? libc mini-libc-mes.E) "mini-")
62 (else "")) "guile") #:exit exit)))
65 (add-scaffold-test "t" #:libc mini-libc-mes.E)
67 ;; tests/00: exit, functions without libc
68 (add-scaffold-test "00-exit-0" #:libc #f)
69 (add-scaffold-test "01-return-0" #:libc #f)
70 (add-scaffold-test "02-return-1" #:libc #f #:exit 1)
71 (add-scaffold-test "03-call" #:libc #f)
72 (add-scaffold-test "04-call-0" #:libc #f)
73 (add-scaffold-test "05-call-1" #:libc #f #:exit 1)
74 (add-scaffold-test "06-call-!1" #:libc #f)
76 (add-target (group "check-scaffold-tests/0" #:dependencies (filter (target-prefix? "check-scaffold/tests/0") %targets)))
78 ;; tests/10: control without libc
80 (cut add-scaffold-test <> #:libc #f)
89 (add-target (group "check-scaffold-tests/1" #:dependencies (filter (target-prefix? "check-scaffold/tests/1") %targets)))
91 ;; tests/20: loop without libc
93 (cut add-scaffold-test <> #:libc #f)
99 (add-target (group "check-scaffold-tests/2" #:dependencies (filter (target-prefix? "check-scaffold/tests/2") %targets)))
101 ;; tests/30: call, compare: mini-libc-mes.c
103 (cut add-scaffold-test <> #:libc mini-libc-mes.E)
110 "36-compare-arithmetic"
114 (add-target (group "check-scaffold-tests/3" #:dependencies (filter (target-prefix? "check-scaffold/tests/3") %targets)))
116 ;; tests/40: control: mini-libc-mes.c
118 (cut add-scaffold-test <> #:libc mini-libc-mes.E)
126 (add-target (group "check-scaffold-tests/4" #:dependencies (filter (target-prefix? "check-scaffold/tests/4") %targets)))
128 ;; tests/50: libc-mes.c
136 (add-target (group "check-scaffold-tests/5" #:dependencies (filter (target-prefix? "check-scaffold/tests/5") %targets)))
138 ;; tests/60: building up to scaffold/m.c, scaffold/micro-mes.c
147 (add-target (group "check-scaffold-tests/6" #:dependencies (filter (target-prefix? "check-scaffold/tests/6") %targets)))
149 ;; tests/70: and beyond src/mes.c -- building up to 8cc.c, pcc.c, tcc.c, libguile/eval.c
155 (add-target (group "check-scaffold-tests/7" #:dependencies (filter (target-prefix? "check-scaffold/tests/7") %targets)))
157 (add-target (group "check-scaffold-tests" #:dependencies (filter (target-prefix? "check-scaffold/tests") %targets)))
160 (define* (add-tcc-test name)
161 (add-target (bin.gcc (string-append "scaffold/tinycc/" name ".c") #:libc #f #:includes '("scaffold/tinycc")))
162 (add-target (check (string-append "scaffold/tinycc/" name ".mlibc-gcc") #:baseline (string-append "scaffold/tinycc/" name ".expect")))
164 (add-target (bin.mescc (string-append "scaffold/tinycc/" name ".c") #:includes '("scaffold/tinycc")))
165 (add-target (check (string-append "scaffold/tinycc/" name ".guile") #:baseline (string-append "scaffold/tinycc/" name ".expect"))))
182 "13_integer_literals"
188 "19_pointer_arithmetic"
190 "20_pointer_comparison"
192 ;;"22_floating_point" ; float
193 ;;"23_type_coercion" ; float
194 ;;"24_math_library" ; float
196 ;;"27_sizeof" ; float
197 ;;"28_strings" ; TODO: strncpy strchr strrchr memset memcpy memcmp
200 ;;"30_hanoi" ; fails with GCC
202 ;;"32_led" ; unsupported: (decl (decl-spec-list (stor-spec (static)) (type-spec (fixed-type "int"))) (init-declr-list (init-declr (array-of (ident "d") (p-expr (fixed "32"))))))
203 ;;"34_array_assignment" ; fails with GCC
206 ;;"36_array_initialisers" ; unspported: (decl (decl-spec-list (type-spec (fixed-type "int"))) (init-declr-list (init-declr (array-of (ident "Array") (p-expr (fixed "10"))) (initzer (initzer-list (initzer (p-expr (fixed "12"))) (initzer (p-expr (fixed "34"))) (initzer (p-expr (fixed "56"))) (initzer (p-expr (fixed "78"))) (initzer (p-expr (fixed "90"))) (initzer (p-expr (fixed "123"))) (initzer (p-expr (fixed "456"))) (initzer (p-expr (fixed "789"))) (initzer (p-expr (fixed "8642"))) (initzer (p-expr (fixed "9753"))))))))
207 ;; "37_sprintf" ; integer formatting unsupported
208 ;;"38_multiple_array_index" ; unspported: (decl (decl-spec-list (type-spec (fixed-type "int"))) (init-declr-list (init-declr (array-of (array-of (ident "a") (p-expr (fixed "4"))) (p-expr (fixed "4"))))))
209 ;;"39_typedef" ; unsupported: (decl (decl-spec-list (stor-spec (typedef)) (type-spec (typename "MyFunStruct"))) (init-declr-list (init-declr (ptr-declr (pointer) (ident "MoreFunThanEver")))))
211 ;;"40_stdio" ; f* functions
213 ;;"42_function_pointer" ; f* functions
215 "44_scoped_declarations"
216 ;; "45_empty_for" ; unsupported
217 ;;"46_grep" ; f* functions
220 ;;"49_bracket_evaluation" ; float
222 "50_logical_second_arg"
223 ;;"51_static" ; unsupported: (decl (decl-spec-list (stor-spec (static)) (type-spec (fixed-type "int"))) (init-declr-list (init-declr (ident "fred") (initzer (p-expr (fixed "1234"))))))
224 ;;"52_unnamed_enum" ; unsupported: (decl (decl-spec-list (stor-spec (typedef)) (type-spec (enum-def (enum-def-list (enum-defn (ident "e")) (enum-defn (ident "f")) (enum-defn (ident "g")))))) (init-declr-list (init-declr (ident "h"))))
226 ;;"55_lshift_type" ; unsigned
229 (add-target (group "check-scaffold-tinycc" #:dependencies (filter (target-prefix? "check-scaffold/tinycc") %targets)))
231 ;;(add-target (group "check-scaffold" #:dependencies (filter (target-prefix? "check-scaffold") %targets)))
233 (add-target (bin.gcc "scaffold/hello.c"))
234 (add-target (check "scaffold/hello.gcc" #:exit 42))
236 (add-target (bin.gcc "scaffold/hello.c" #:libc #f))
237 (add-target (check "scaffold/hello.mlibc-gcc" #:exit 42))
239 (add-target (bin.mescc "scaffold/hello.c" #:libc mini-libc-mes.E))
240 (add-target (check "scaffold/hello.mini-guile" #:exit 42))
242 (add-target (bin.mescc "scaffold/hello.c"))
243 (add-target (check "scaffold/hello.guile" #:exit 42))
246 (add-target (bin.gcc "scaffold/m.c"))
247 (add-target (check "scaffold/m.gcc" #:exit 255))
249 (add-target (bin.gcc "scaffold/m.c" #:libc #f))
250 (add-target (check "scaffold/m.mlibc-gcc" #:exit 255))
252 (add-target (bin.mescc "scaffold/m.c"))
253 (add-target (check "scaffold/m.guile" #:exit 255))
255 (add-target (bin.gcc "scaffold/micro-mes.c" #:libc #f))
256 (add-target (check "scaffold/micro-mes.mlibc-gcc" #:exit 6)) ; arg1 arg2 arg3 arg4 arg5
258 (add-target (bin.mescc "scaffold/micro-mes.c"))
259 (add-target (check "scaffold/micro-mes.guile" #:exit 6)) ; arg1 arg2 arg3 arg4 arg5
261 (add-target (group "check-scaffold" #:dependencies (filter (target-prefix? "check-scaffold") %targets)))
264 '("gc" "lib" "math" "mes" "posix" "reader" "vector"))
267 `(,@(map (cut string-append "src/" <> ".c") snarf-bases)
268 ,@(map (cut string-append "src/" <> ".mes.h") snarf-bases)
269 ,@(map (cut string-append "src/" <> ".mes.i") snarf-bases)
270 ,@(map (cut string-append "src/" <> ".mes.environment.i") snarf-bases)))
272 (define gcc-snarf-targets
274 (add-target (snarf "src/gc.c" #:mes? #f))
275 (add-target (snarf "src/lib.c" #:mes? #f))
276 (add-target (snarf "src/math.c" #:mes? #f))
277 (add-target (snarf "src/mes.c" #:mes? #f))
278 (add-target (snarf "src/posix.c" #:mes? #f))
279 (add-target (snarf "src/reader.c" #:mes? #f))
280 (add-target (snarf "src/vector.c" #:mes? #f))))
282 (define mes-snarf-targets
284 (add-target (snarf "src/gc.c"))
285 (add-target (snarf "src/lib.c" #:mes? #t))
286 (add-target (snarf "src/math.c" #:mes? #t))
287 (add-target (snarf "src/mes.c" #:mes? #t))
288 (add-target (snarf "src/posix.c" #:mes? #t))
289 (add-target (snarf "src/reader.c" #:mes? #t))
290 (add-target (snarf "src/vector.c" #:mes? #t))))
292 (add-target (bin.gcc "src/mes.c" #:dependencies gcc-snarf-targets
293 #:defines `("FIXED_PRIMITIVES=1"
296 ,(string-append "VERSION=\"" %version "\"")
297 ,(string-append "MODULEDIR=\"" (string-append %moduledir "/") "\"")
298 ,(string-append "PREFIX=\"" %prefix "\""))))
300 (add-target (bin.gcc "src/mes.c" #:libc #f
301 #:dependencies mes-snarf-targets
302 #:defines `("FIXED_PRIMITIVES=1"
304 ,(string-append "VERSION=\"" %version "\"")
305 ,(string-append "MODULEDIR=\"" (string-append %moduledir "/") "\"")
306 ,(string-append "PREFIX=\"" %prefix "\""))))
308 (add-target (bin.mescc "src/mes.c" #:dependencies mes-snarf-targets
309 #:defines `("FIXED_PRIMITIVES=1"
311 ,(string-append "VERSION=\"" %version "\"")
312 ,(string-append "MODULEDIR=\"" (string-append %moduledir "/") "\"")
313 ,(string-append "PREFIX=\"" %prefix "\""))))
319 "tests/quasiquote.test"
334 "tests/let-syntax.test"
342 (define (add-mes.gcc-test o)
343 (add-target (target (file-name o)))
344 (add-target (check o #:dependencies (list (get-target "src/mes.mlibc-gcc")))))
346 (define (add-mes.guile-test o)
347 (add-target (target (file-name o)))
348 (add-target (check o #:dependencies (list (get-target "src/mes.guile")))))
350 ;; takes long, and should always pass if...
351 ;;(for-each add-mes.gcc-test mes-tests)
353 ;; ...mes.guile passes :-)
354 (for-each add-mes.guile-test mes-tests)
356 ;; FIXME: run tests/base.test
357 (setenv "MES" "src/mes.guile")
359 (add-target (install "guile/mescc.scm" #:dir "bin" #:substitutes #t))
360 (add-target (install "scripts/mescc.mes" #:dir "bin" #:substitutes #t))
361 (add-target (install "scripts/repl.mes" #:dir "bin" #:substitutes #t))
362 (define bootstrap? #f)
364 (add-target (install "src/mes.mes" #:dir "bin" #:installed-name "mes"))
365 (add-target (install "src/mes.guile" #:dir "bin" #:installed-name "mes")))
367 (define* ((install-dir #:key dir) name)
368 (add-target (install name #:dir (string-append dir "/" (dirname name)))))
370 (add-target (install "module/mes/base-0.mes" #:dir (string-append %moduledir "/mes") #:substitutes #t))
371 (add-target (install "module/language/c99/compiler.mes" #:dir (string-append %moduledir "/language/c99") #:substitutes #t))
373 (define %module-dir "share/mes")
376 ((install-dir #:dir (string-append %module-dir)) f))
377 '("module/language/c99/compiler.mes"
378 "module/language/c99/compiler.scm"
379 "module/language/c99/info.mes"
380 "module/language/c99/info.scm"
381 "module/language/paren.mes"
384 "module/mes/as-i386.mes"
385 "module/mes/as-i386.scm"
388 ;;"module/mes/base-0.mes"
389 "module/mes/base.mes"
390 "module/mes/bytevectors.mes"
391 "module/mes/bytevectors.scm"
392 "module/mes/catch.mes"
393 "module/mes/display.mes"
396 "module/mes/fluids.mes"
397 "module/mes/getopt-long.mes"
398 "module/mes/getopt-long.scm"
399 "module/mes/guile.mes"
400 "module/mes/lalr.mes"
401 "module/mes/lalr.scm"
403 "module/mes/match.mes"
404 "module/mes/match.scm"
405 "module/mes/optargs.mes"
406 "module/mes/optargs.scm"
408 "module/mes/peg/cache.scm"
409 "module/mes/peg/codegen.scm"
410 "module/mes/peg/simplify-tree.scm"
411 "module/mes/peg/string-peg.scm"
412 "module/mes/peg/using-parsers.scm"
413 "module/mes/pmatch.mes"
414 "module/mes/pmatch.scm"
415 "module/mes/posix.mes"
416 "module/mes/pretty-print.mes"
417 "module/mes/pretty-print.scm"
418 "module/mes/psyntax-0.mes"
419 "module/mes/psyntax-1.mes"
420 "module/mes/psyntax.mes"
421 "module/mes/psyntax.pp"
422 "module/mes/psyntax.ss"
423 "module/mes/quasiquote.mes"
424 "module/mes/quasisyntax.mes"
425 "module/mes/quasisyntax.scm"
426 "module/mes/read-0.mes"
427 "module/mes/record-0.mes"
428 "module/mes/record.mes"
429 "module/mes/repl.mes"
431 "module/mes/syntax.mes"
432 "module/mes/syntax.scm"
433 "module/mes/test.mes"
434 "module/mes/tiny-0.mes"
435 "module/mes/type-0.mes"
436 "module/nyacc/lalr.mes"
437 "module/nyacc/lang/c99/cpp.mes"
438 "module/nyacc/lang/c99/parser.mes"
439 "module/nyacc/lang/calc/parser.mes"
440 "module/nyacc/lang/util.mes"
441 "module/nyacc/lex.mes"
442 "module/nyacc/parse.mes"
443 "module/nyacc/util.mes"
444 "module/rnrs/arithmetic/bitwise.mes"
445 "module/srfi/srfi-0.mes"
446 "module/srfi/srfi-1.mes"
447 "module/srfi/srfi-1.scm"
448 "module/srfi/srfi-13.mes"
449 "module/srfi/srfi-14.mes"
450 "module/srfi/srfi-16.mes"
451 "module/srfi/srfi-16.scm"
452 "module/srfi/srfi-26.mes"
453 "module/srfi/srfi-26.scm"
454 "module/srfi/srfi-43.mes"
455 "module/srfi/srfi-9-psyntax.mes"
456 "module/srfi/srfi-9.mes"
457 "module/srfi/srfi-9.scm"
458 "module/sxml/xpath.mes"
459 "module/sxml/xpath.scm"))
461 (define* ((install-guile-dir #:key dir) name)
462 (add-target (install (string-append "guile/" name) #:dir (string-append dir "/" (dirname name)))))
466 ((install-guile-dir #:dir (string-append %guiledir)) f))
471 ((install-guile-dir #:dir (string-append %godir)) f))
474 (add-target (install "mlibc/libc-mes.E" #:dir "lib"))
475 (add-target (install "mlibc/libc-mes.M1" #:dir "lib"))
476 (add-target (install "mlibc/mini-libc-mes.E" #:dir "lib"))
477 (add-target (install "mlibc/mini-libc-mes.M1" #:dir "lib"))
481 ((install-dir #:dir "share/") f))
482 '("mlibc/include/alloca.h"
483 "mlibc/include/assert.h"
484 "mlibc/include/ctype.h"
485 "mlibc/include/dlfcn.h"
486 "mlibc/include/errno.h"
487 "mlibc/include/fcntl.h"
488 "mlibc/include/features.h"
489 "mlibc/include/inttypes.h"
490 "mlibc/include/libgen.h"
491 "mlibc/include/limits.h"
492 "mlibc/include/locale.h"
493 "mlibc/include/math.h"
494 "mlibc/include/mlibc.h"
495 "mlibc/include/setjmp.h"
496 "mlibc/include/signal.h"
497 "mlibc/include/stdarg.h"
498 "mlibc/include/stdbool.h"
499 "mlibc/include/stdint.h"
500 "mlibc/include/stdio.h"
501 "mlibc/include/stdlib.h"
502 "mlibc/include/stdnoreturn.h"
503 "mlibc/include/string.h"
504 "mlibc/include/strings.h"
505 "mlibc/include/sys/cdefs.h"
506 "mlibc/include/sys/mman.h"
507 "mlibc/include/sys/stat.h"
508 "mlibc/include/sys/time.h"
509 "mlibc/include/sys/timeb.h"
510 "mlibc/include/sys/types.h"
511 "mlibc/include/sys/ucontext.h"
512 "mlibc/include/sys/wait.h"
513 "mlibc/include/time.h"
514 "mlibc/include/unistd.h"))
517 (compose add-target (cut install <> #:dir "share/doc/mes"))
526 (add-target (install "doc/fosdem/fosdem.pdf" #:dir "share/doc/mes"))
529 (cond ((member "all-go" args) #t)
530 ((member "clean-go" args) (map delete-file (filter file-exists? %go-files)))
531 ((member "clean" args) (clean))
532 ((member "list" args) (display (string-join (map target-file-name %targets) "\n" 'suffix)))
533 ((member "help" args) (format #t "Usage: ./make.scm [TARGET]...
545 (string-join (filter (negate (cut string-index <> #\/)) (map target-file-name %targets)) "\n " 'prefix)))
547 (let ((targets (match args
548 (() (filter (negate check-target?) %targets))
549 ((? (cut member "all" <>)) (filter (conjoin (negate install-target?)
550 (negate check-target?))
552 ((? (cut member "check" <>)) (filter check-target? %targets))
553 ((? (cut member "install" <>)) (filter install-target? %targets))
554 (_ (filter-map (cut get-target <>) args)))))
555 (for-each build targets)
556 ;;((@@ (mes make) store) #:print 0)
559 (main (cdr (command-line)))