diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-13 20:27:19 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-13 20:27:19 -0500 |
| commit | 853b8e505e007c30fe9ad26ad4f611874f4e7d4f (patch) | |
| tree | fc48bad52f6a8671789b258e65693beee11d9c20 /nextlang.c | |
| parent | c60b21bf3c5c9341e4ced1d19d3aeed13dcfc778 (diff) | |
Add secret structs
Diffstat (limited to 'nextlang.c')
| -rw-r--r-- | nextlang.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |
