Open martindemello opened 3 years ago
adding the key to the CLI.run
invocation fixed it:
diff --git a/src/arr/compiler/pyret.arr b/src/arr/compiler/pyret.arr
index 84e6b2ce7..82767dc86 100644
--- a/src/arr/compiler/pyret.arr
+++ b/src/arr/compiler/pyret.arr
@@ -207,6 +207,7 @@ fun main(args :: List<String>) -> Number block:
result = CLI.run(r.get-value("run"), CS.default-compile-options.{
standalone-file: standalone-file,
display-progress: display-progress,
+ add-profiling: add-profiling,
check-all: check-all
}, run-args)
_ = print(result.message + "\n")
I succesfully ran
make; make test
and everything up tomake new-bootstrap
, but both before and after regenerating the bootstrap I get the following error:(also pre-bootstrap the error referred to
file:///Users/joe/src/pyret-lang/src/arr/compiler/compile-lib.arr
which is less than ideal :))