Update readme todo

This commit is contained in:
Krzosa Karol
2022-10-09 12:26:05 +02:00
parent ee6f8114ee
commit faec89beae
5 changed files with 11 additions and 11 deletions

View File

@@ -312,7 +312,7 @@ compile_file(String filename, U32 compile_flags = COMPILE_NULL){
#if OS_WINDOWS
String compiler_call = string_fmt(scratch, "clang.exe program.c -Wall -Wno-unused-function -Wno-parentheses-equality -g -o a.exe -lgdi32 -luser32 -lwinmm");
#else
String compiler_call = string_fmt(scratch, "clang program.c -std=c99 -Wall -Wno-unused-function -g -o a.out");
String compiler_call = string_fmt(scratch, "clang program.c -std=c99 -Wall -Wno-unused-function -Wno-parentheses-equality -g -o a.out");
// String compiler_call = string_fmt(scratch, "tcc program.c -Wall -g -o a.out");
#endif
log_trace("%Q", compiler_call);