- Use clang for now
This commit is contained in:
Tristan B. Velloza Kildaire 2022-12-12 15:52:46 +02:00
parent b0d9d2aabe
commit c870208118
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ int main()
try
{
//NOTE: Change to system compiler (maybe, we need to choose a good C compiler)
Pid ccPID = spawnProcess(["gcc", "-o", "tlang.out", file.name()]);
Pid ccPID = spawnProcess(["clang", "-o", "tlang.out", file.name()]);
//NOTE: Case where it exited and Pid now inavlid (if it happens it would throw processexception surely)?
int code = wait(ccPID);