aboutsummaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/compile.c b/compile.c
index 91482a1..d6b564e 100644
--- a/compile.c
+++ b/compile.c
@@ -69,16 +69,16 @@ int64_t compile(CleanString path, CleanString module) {
// Build command:
char cmd[512];
snprintf(cmd, 511, "cd \"%s\" && clm -ms -nw "
- "-I $CLEAN_HOME/lib/Directory "
- "-I $CLEAN_HOME/lib/Dynamics -dynamics "
- "-I $CLEAN_HOME/lib/Gast "
- "-I $CLEAN_HOME/lib/GraphCopy "
- "-I $CLEAN_HOME/lib/Platform "
- "-I $CLEAN_HOME/lib/Platform/Deprecated/ArgEnv "
- "-I $CLEAN_HOME/lib/Platform/Deprecated/MersenneTwister "
- "-I $CLEAN_HOME/lib/Platform/Deprecated/StdLib "
- "-I $CLEAN_HOME/lib/Platform/Deprecated/Generics "
- "-I $CLEAN_HOME/lib/Local "
+ "-IL Directory "
+ "-IL Dynamics -dynamics "
+ "-IL Gast "
+ "-IL GraphCopy "
+ "-IL Platform "
+ "-IL Platform/Deprecated/ArgEnv "
+ "-IL Platform/Deprecated/Generics "
+ "-IL Platform/Deprecated/MersenneTwister "
+ "-IL Platform/Deprecated/StdLib "
+ "-IL Local "
"-b -nt -h 20M %s -o %s",
pathchars, modulechars, modulechars);