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
154 "72-typedef-struct-def"))
156 (add-target (group "check-scaffold-tests/7" #:dependencies (filter (target-prefix? "check-scaffold/tests/7") %targets)))
158 (add-target (group "check-scaffold-tests" #:dependencies (filter (target-prefix? "check-scaffold/tests") %targets)))
161 (define* (add-tcc-test name)
162 (add-target (bin.gcc (string-append "scaffold/tinycc/" name ".c") #:libc #f #:includes '("scaffold/tinycc")))
163 (add-target (check (string-append "scaffold/tinycc/" name ".mlibc-gcc") #:baseline (string-append "scaffold/tinycc/" name ".expect")))
165 (add-target (bin.mescc (string-append "scaffold/tinycc/" name ".c") #:includes '("scaffold/tinycc")))
166 (add-target (check (string-append "scaffold/tinycc/" name ".guile") #:baseline (string-append "scaffold/tinycc/" name ".expect"))))
183 "13_integer_literals"
189 "19_pointer_arithmetic"
191 "20_pointer_comparison"
193 ;;"22_floating_point" ; float
194 ;;"23_type_coercion" ; float
195 ;;"24_math_library" ; float
197 ;;"27_sizeof" ; float
198 ;;"28_strings" ; TODO: strncpy strchr strrchr memset memcpy memcmp
201 ;;"30_hanoi" ; fails with GCC
203 ;;"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"))))))
204 ;;"34_array_assignment" ; fails with GCC
207 ;;"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"))))))))
208 ;; "37_sprintf" ; integer formatting unsupported
209 ;;"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"))))))
210 ;;"39_typedef" ; unsupported: (decl (decl-spec-list (stor-spec (typedef)) (type-spec (typename "MyFunStruct"))) (init-declr-list (init-declr (ptr-declr (pointer) (ident "MoreFunThanEver")))))
212 ;;"40_stdio" ; f* functions
214 ;;"42_function_pointer" ; f* functions
216 "44_scoped_declarations"
217 ;; "45_empty_for" ; unsupported
218 ;;"46_grep" ; f* functions
221 ;;"49_bracket_evaluation" ; float
223 "50_logical_second_arg"
224 ;;"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"))))))
225 ;;"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"))))
227 ;;"55_lshift_type" ; unsigned
230 (add-target (group "check-scaffold-tinycc" #:dependencies (filter (target-prefix? "check-scaffold/tinycc") %targets)))
232 ;;(add-target (group "check-scaffold" #:dependencies (filter (target-prefix? "check-scaffold") %targets)))
234 (add-target (bin.gcc "scaffold/hello.c"))
235 (add-target (check "scaffold/hello.gcc" #:exit 42))
237 (add-target (bin.gcc "scaffold/hello.c" #:libc #f))
238 (add-target (check "scaffold/hello.mlibc-gcc" #:exit 42))
240 (add-target (bin.mescc "scaffold/hello.c" #:libc mini-libc-mes.E))
241 (add-target (check "scaffold/hello.mini-guile" #:exit 42))
243 (add-target (bin.mescc "scaffold/hello.c"))
244 (add-target (check "scaffold/hello.guile" #:exit 42))
247 (add-target (bin.gcc "scaffold/m.c"))
248 (add-target (check "scaffold/m.gcc" #:exit 255))
250 (add-target (bin.gcc "scaffold/m.c" #:libc #f))
251 (add-target (check "scaffold/m.mlibc-gcc" #:exit 255))
253 (add-target (bin.mescc "scaffold/m.c"))
254 (add-target (check "scaffold/m.guile" #:exit 255))
256 (add-target (bin.gcc "scaffold/micro-mes.c" #:libc #f))
257 (add-target (check "scaffold/micro-mes.mlibc-gcc" #:exit 6)) ; arg1 arg2 arg3 arg4 arg5
259 (add-target (bin.mescc "scaffold/micro-mes.c"))
260 (add-target (check "scaffold/micro-mes.guile" #:exit 6)) ; arg1 arg2 arg3 arg4 arg5
262 (add-target (group "check-scaffold" #:dependencies (filter (target-prefix? "check-scaffold") %targets)))
265 '("gc" "lib" "math" "mes" "posix" "reader" "vector"))
268 `(,@(map (cut string-append "src/" <> ".c") snarf-bases)
269 ,@(map (cut string-append "src/" <> ".mes.h") snarf-bases)
270 ,@(map (cut string-append "src/" <> ".mes.i") snarf-bases)
271 ,@(map (cut string-append "src/" <> ".mes.environment.i") snarf-bases)))
273 (define gcc-snarf-targets
275 (add-target (snarf "src/gc.c" #:mes? #f))
276 (add-target (snarf "src/lib.c" #:mes? #f))
277 (add-target (snarf "src/math.c" #:mes? #f))
278 (add-target (snarf "src/mes.c" #:mes? #f))
279 (add-target (snarf "src/posix.c" #:mes? #f))
280 (add-target (snarf "src/reader.c" #:mes? #f))
281 (add-target (snarf "src/vector.c" #:mes? #f))))
283 (define mes-snarf-targets
285 (add-target (snarf "src/gc.c"))
286 (add-target (snarf "src/lib.c" #:mes? #t))
287 (add-target (snarf "src/math.c" #:mes? #t))
288 (add-target (snarf "src/mes.c" #:mes? #t))
289 (add-target (snarf "src/posix.c" #:mes? #t))
290 (add-target (snarf "src/reader.c" #:mes? #t))
291 (add-target (snarf "src/vector.c" #:mes? #t))))
293 (add-target (bin.gcc "src/mes.c" #:dependencies gcc-snarf-targets
294 #:defines `("FIXED_PRIMITIVES=1"
297 ,(string-append "VERSION=\"" %version "\"")
298 ,(string-append "MODULEDIR=\"" (string-append %moduledir "/") "\"")
299 ,(string-append "PREFIX=\"" %prefix "\""))))
301 (add-target (bin.gcc "src/mes.c" #:libc #f
302 #:dependencies mes-snarf-targets
303 #:defines `("FIXED_PRIMITIVES=1"
305 ,(string-append "VERSION=\"" %version "\"")
306 ,(string-append "MODULEDIR=\"" (string-append %moduledir "/") "\"")
307 ,(string-append "PREFIX=\"" %prefix "\""))))
309 (add-target (bin.mescc "src/mes.c" #:dependencies mes-snarf-targets
310 #:defines `("FIXED_PRIMITIVES=1"
312 ,(string-append "VERSION=\"" %version "\"")
313 ,(string-append "MODULEDIR=\"" (string-append %moduledir "/") "\"")
314 ,(string-append "PREFIX=\"" %prefix "\""))))
320 "tests/quasiquote.test"
335 "tests/let-syntax.test"
343 (define (add-mes.gcc-test o)
344 (add-target (target (file-name o)))
345 (add-target (check o #:dependencies (list (get-target "src/mes.mlibc-gcc")))))
347 (define (add-mes.guile-test o)
348 (add-target (target (file-name o)))
349 (add-target (check o #:dependencies (list (get-target "src/mes.guile")))))
351 ;; takes long, and should always pass if...
352 ;;(for-each add-mes.gcc-test mes-tests)
354 ;; ...mes.guile passes :-)
355 (for-each add-mes.guile-test mes-tests)
357 ;; FIXME: run tests/base.test
358 (setenv "MES" "src/mes.guile")
360 (add-target (install "guile/mescc.scm" #:dir "bin" #:substitutes #t))
361 (add-target (install "scripts/mescc.mes" #:dir "bin" #:substitutes #t))
362 (add-target (install "scripts/repl.mes" #:dir "bin" #:substitutes #t))
363 (define bootstrap? #f)
365 (add-target (install "src/mes.mes" #:dir "bin" #:installed-name "mes"))
366 (add-target (install "src/mes.guile" #:dir "bin" #:installed-name "mes")))
368 (define* ((install-dir #:key dir) name)
369 (add-target (install name #:dir (string-append dir "/" (dirname name)))))
371 (add-target (install "module/mes/base-0.mes" #:dir (string-append %moduledir "/mes") #:substitutes #t))
372 (add-target (install "module/language/c99/compiler.mes" #:dir (string-append %moduledir "/language/c99") #:substitutes #t))
374 (define %module-dir "share/mes")
377 ((install-dir #:dir (string-append %module-dir)) f))
378 '("module/language/c99/compiler.mes"
379 "module/language/c99/compiler.scm"
380 "module/language/c99/info.mes"
381 "module/language/c99/info.scm"
382 "module/language/paren.mes"
385 "module/mes/as-i386.mes"
386 "module/mes/as-i386.scm"
389 ;;"module/mes/base-0.mes"
390 "module/mes/base.mes"
391 "module/mes/bytevectors.mes"
392 "module/mes/bytevectors.scm"
393 "module/mes/catch.mes"
394 "module/mes/display.mes"
397 "module/mes/fluids.mes"
398 "module/mes/getopt-long.mes"
399 "module/mes/getopt-long.scm"
400 "module/mes/guile.mes"
401 "module/mes/lalr.mes"
402 "module/mes/lalr.scm"
404 "module/mes/match.mes"
405 "module/mes/match.scm"
406 "module/mes/optargs.mes"
407 "module/mes/optargs.scm"
409 "module/mes/peg/cache.scm"
410 "module/mes/peg/codegen.scm"
411 "module/mes/peg/simplify-tree.scm"
412 "module/mes/peg/string-peg.scm"
413 "module/mes/peg/using-parsers.scm"
414 "module/mes/pmatch.mes"
415 "module/mes/pmatch.scm"
416 "module/mes/posix.mes"
417 "module/mes/pretty-print.mes"
418 "module/mes/pretty-print.scm"
419 "module/mes/psyntax-0.mes"
420 "module/mes/psyntax-1.mes"
421 "module/mes/psyntax.mes"
422 "module/mes/psyntax.pp"
423 "module/mes/psyntax.ss"
424 "module/mes/quasiquote.mes"
425 "module/mes/quasisyntax.mes"
426 "module/mes/quasisyntax.scm"
427 "module/mes/read-0.mes"
428 "module/mes/record-0.mes"
429 "module/mes/record.mes"
430 "module/mes/repl.mes"
432 "module/mes/syntax.mes"
433 "module/mes/syntax.scm"
434 "module/mes/test.mes"
435 "module/mes/tiny-0.mes"
436 "module/mes/type-0.mes"
437 "module/nyacc/lalr.mes"
438 "module/nyacc/lang/c99/cpp.mes"
439 "module/nyacc/lang/c99/parser.mes"
440 "module/nyacc/lang/calc/parser.mes"
441 "module/nyacc/lang/util.mes"
442 "module/nyacc/lex.mes"
443 "module/nyacc/parse.mes"
444 "module/nyacc/util.mes"
445 "module/rnrs/arithmetic/bitwise.mes"
446 "module/srfi/srfi-0.mes"
447 "module/srfi/srfi-1.mes"
448 "module/srfi/srfi-1.scm"
449 "module/srfi/srfi-13.mes"
450 "module/srfi/srfi-14.mes"
451 "module/srfi/srfi-16.mes"
452 "module/srfi/srfi-16.scm"
453 "module/srfi/srfi-26.mes"
454 "module/srfi/srfi-26.scm"
455 "module/srfi/srfi-43.mes"
456 "module/srfi/srfi-9-psyntax.mes"
457 "module/srfi/srfi-9.mes"
458 "module/srfi/srfi-9.scm"
459 "module/sxml/xpath.mes"
460 "module/sxml/xpath.scm"))
462 (define* ((install-guile-dir #:key dir) name)
463 (add-target (install (string-append "guile/" name) #:dir (string-append dir "/" (dirname name)))))
467 ((install-guile-dir #:dir (string-append %guiledir)) f))
472 ((install-guile-dir #:dir (string-append %godir)) f))
475 (add-target (install "mlibc/libc-mes.E" #:dir "lib"))
476 (add-target (install "mlibc/libc-mes.M1" #:dir "lib"))
477 (add-target (install "mlibc/mini-libc-mes.E" #:dir "lib"))
478 (add-target (install "mlibc/mini-libc-mes.M1" #:dir "lib"))
482 ((install-dir #:dir "share/") f))
483 '("mlibc/include/alloca.h"
484 "mlibc/include/assert.h"
485 "mlibc/include/ctype.h"
486 "mlibc/include/dlfcn.h"
487 "mlibc/include/errno.h"
488 "mlibc/include/fcntl.h"
489 "mlibc/include/features.h"
490 "mlibc/include/inttypes.h"
491 "mlibc/include/libgen.h"
492 "mlibc/include/limits.h"
493 "mlibc/include/locale.h"
494 "mlibc/include/math.h"
495 "mlibc/include/mlibc.h"
496 "mlibc/include/setjmp.h"
497 "mlibc/include/signal.h"
498 "mlibc/include/stdarg.h"
499 "mlibc/include/stdbool.h"
500 "mlibc/include/stdint.h"
501 "mlibc/include/stdio.h"
502 "mlibc/include/stdlib.h"
503 "mlibc/include/stdnoreturn.h"
504 "mlibc/include/string.h"
505 "mlibc/include/strings.h"
506 "mlibc/include/sys/cdefs.h"
507 "mlibc/include/sys/mman.h"
508 "mlibc/include/sys/stat.h"
509 "mlibc/include/sys/time.h"
510 "mlibc/include/sys/timeb.h"
511 "mlibc/include/sys/types.h"
512 "mlibc/include/sys/ucontext.h"
513 "mlibc/include/sys/wait.h"
514 "mlibc/include/time.h"
515 "mlibc/include/unistd.h"))
518 (compose add-target (cut install <> #:dir "share/doc/mes"))
527 (add-target (install "doc/fosdem/fosdem.pdf" #:dir "share/doc/mes"))
530 (cond ((member "all-go" args) #t)
531 ((member "clean-go" args) (map delete-file (filter file-exists? %go-files)))
532 ((member "clean" args) (clean))
533 ((member "list" args) (display (string-join (map target-file-name %targets) "\n" 'suffix)))
534 ((member "help" args) (format #t "Usage: ./make.scm [TARGET]...
546 (string-join (filter (negate (cut string-index <> #\/)) (map target-file-name %targets)) "\n " 'prefix)))
548 (let ((targets (match args
549 (() (filter (negate check-target?) %targets))
550 ((? (cut member "all" <>)) (filter (conjoin (negate install-target?)
551 (negate check-target?))
553 ((? (cut member "check" <>)) (filter check-target? %targets))
554 ((? (cut member "install" <>)) (filter install-target? %targets))
555 (_ (filter-map (cut get-target <>) args)))))
556 (for-each build targets)
557 ;;((@@ (mes make) store) #:print 0)
560 (main (cdr (command-line)))