This might be a little bit insane, but I've (as of today) taken to using
| result = standard_build_search(app, view,
active_buffer,
&dir_copy, command, perform_backup, false,
make_lit_string("_build.c"),
make_lit_string("\"tcc -run _build.c\""));
|
as my build command and using _spawnvp() within _build.c to call clang to compile stuff but anyone using the non-super version could just as easily call TCC from a .bat and do the same thing (if you don't mind depending on TCC or writing your build scripts in C) or for that matter you could use any other compiler and just do something like:
| cc -c _build.c -o build.exe
build.exe
|
or
| cl.exe _build.c /DEBUG /Z7 /link /out:build.exe
build.exe
|