Small changes fixing stuff

This commit is contained in:
Krzosa Karol
2022-10-04 11:42:16 +02:00
parent b10f3840df
commit 3c172233f6
8 changed files with 343 additions and 343 deletions

View File

@@ -290,7 +290,7 @@ compile_file(String filename, U32 compile_flags = COMPILE_NULL){
Scratch scratch;
F64 begin = os_time();
String compiler_call = string_fmt(scratch, "clang.exe program.c -Wall -Wno-parentheses-equality -g -o a.exe -lgdi32 -luser32 -lwinmm");
String compiler_call = string_fmt(scratch, "clang.exe program.c -Wall -Wno-unused-function -Wno-parentheses-equality -g -o a.exe -lgdi32 -luser32 -lwinmm");
system((const char *)compiler_call.str);
F64 end = os_time();