Commenting out includes to diagnose...

This commit is contained in:
Edward R. Gonzalez 2023-08-21 21:20:29 -04:00
parent 68f34e6fab
commit 9f64760b7a

View File

@ -122,6 +122,7 @@ if ( $vendor -match "clang" )
$flag_debug = '-g'
$flag_debug_codeview = '-gcodeview'
$flag_define = '-D'
$flag_preprocess = '-E'
$flag_include = '-I'
$flag_library = '-l'
$flag_library_path = '-L'
@ -185,6 +186,8 @@ if ( $vendor -match "clang" )
$compiler_args += $flag_warning + $_
}
# $compiler_args += $flag_preprocess
$compiler_args += $flag_compile, $unit
run-compiler $compiler $unit $compiler_args