Try out the multi process build

This commit is contained in:
Krzosa Karol
2024-01-27 21:45:04 +01:00
parent 43f770b790
commit 46b3ac4007
6 changed files with 148 additions and 213 deletions

View File

@@ -49,7 +49,7 @@ int main(int argument_count, char **arguments) {
}
else {
IO_Assert(cc == "gcc");
result = OS_SystemF("gcc -Wno-write-strings %.*s -o %.*s -g", S8_Expand(build_file), S8_Expand(exe_name));
result = OS_SystemF("g++ -Wno-write-strings %.*s -o %.*s -g", S8_Expand(build_file), S8_Expand(exe_name));
}
if (result != 0) {