aboutsummaryrefslogtreecommitdiff
path: root/nextlang.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-02-13 20:27:19 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-02-13 20:27:19 -0500
commit853b8e505e007c30fe9ad26ad4f611874f4e7d4f (patch)
treefc48bad52f6a8671789b258e65693beee11d9c20 /nextlang.c
parentc60b21bf3c5c9341e4ced1d19d3aeed13dcfc778 (diff)
Add secret structs
Diffstat (limited to 'nextlang.c')
-rw-r--r--nextlang.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nextlang.c b/nextlang.c
index d87113a8..0124f834 100644
--- a/nextlang.c
+++ b/nextlang.c
@@ -89,7 +89,7 @@ int main(int argc, char *argv[])
if (getenv("LDLIBS"))
ldlibs = heap_strf("%s %s", ldlibs, getenv("LDLIBS"));
- const char *run = heap_strf("tcc %s %s -run -", cflags, ldlibs);
+ const char *run = heap_strf("tcc -run %s %s -", cflags, ldlibs);
FILE *cc = popen(run, "w");
CORD_put(program, cc);
fclose(cc);