diff options
author | Camil Staps | 2016-04-03 22:51:45 +0200 |
---|---|---|
committer | Camil Staps | 2016-04-05 21:35:46 +0200 |
commit | a3412f121648f8c637b78834a2f017a5ad6b7312 (patch) | |
tree | 02a8a4c4567d76a3cad9f0a1e9319366c4f05ded /compile.c | |
parent | Use dynamics and generics to output type (diff) |
Use genShow from genLibTest instead of gPrint (can show -> type)
Diffstat (limited to 'compile.c')
-rw-r--r-- | compile.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |