aboutsummaryrefslogtreecommitdiff
path: root/nextlang.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-02-13 22:13:54 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-02-13 22:13:54 -0500
commit85bd567d3c12511149feb3c50e4ae078cee7950a (patch)
treeda1f17c3559040f7f3a2f60c2dde77497268ee92 /nextlang.c
parent853b8e505e007c30fe9ad26ad4f611874f4e7d4f (diff)
Add kwargs as a macro hack
Diffstat (limited to 'nextlang.c')
-rw-r--r--nextlang.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/nextlang.c b/nextlang.c
index 0124f834..cfd86c61 100644
--- a/nextlang.c
+++ b/nextlang.c
@@ -90,6 +90,7 @@ int main(int argc, char *argv[])
ldlibs = heap_strf("%s %s", ldlibs, getenv("LDLIBS"));
const char *run = heap_strf("tcc -run %s %s -", cflags, ldlibs);
+ // const char *run = heap_strf("gcc -x c %s %s -", cflags, ldlibs);
FILE *cc = popen(run, "w");
CORD_put(program, cc);
fclose(cc);