File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ #lang racket
2+ (provide runtime-path)
3+
4+ (require racket/runtime-path)
5+ (define-runtime-path here ". " )
6+
7+ (system (string-append "make -C "
8+ (path->string (normalize-path here))
9+ " runtime.o " ))
10+
11+ (define runtime-path
12+ (normalize-path (build-path here "runtime.o " )))
Original file line number Diff line number Diff line change 44 "../interp-io.rkt "
55 "../parse.rkt "
66 "../types.rkt "
7+ "../build-runtime.rkt "
78 a86/interp
89 rackunit)
910
1011;; link with runtime for IO operations
11- (unless (file-exists? "../runtime.o " )
12- (system "make -C .. runtime.o " ))
12+ ; (unless (file-exists? "../runtime.o")
13+ ; (system "make -C .. runtime.o"))
1314(current-objs
14- (list (path->string (normalize -path " ../runtime.o " ) )))
15+ (list (path->string runtime -path)))
1516
1617(define (test-runner run)
1718
You can’t perform that action at this time.
0 commit comments