aboutsummaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index fcfc45c..1411d94 100644
--- a/compile.c
+++ b/compile.c
@@ -71,7 +71,8 @@ int64_t compile(CleanString path, CleanString module) {
char cmd[182];
snprintf(cmd, 182, "cd \"%s\" && clm -I $CLEAN_HOME/lib/StdLib -I "
"$CLEAN_HOME/lib/Generics -I $CLEAN_HOME/lib/Dynamics -dynamics "
- "-ms -nw -b -nt %s -o %s", pathchars, modulechars, modulechars);
+ "-I $CLEAN_HOME/lib/Gast -ms -nw -b -nt %s -o %s",
+ pathchars, modulechars, modulechars);
free(pathchars);
free(modulechars);