We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6ce5ef commit c167727Copy full SHA for c167727
1 file changed
langs/fraud/build-runtime.rkt
@@ -0,0 +1,12 @@
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")))
0 commit comments