wire non graphical raddbg build target

This commit is contained in:
Nikita Smith
2026-06-02 12:09:53 -07:00
committed by Ryan Fleury
parent b6bc8d89b0
commit b60f5ec7cb
5 changed files with 10 additions and 6 deletions
+3 -3
View File
@@ -26,8 +26,8 @@ for %%m in (%MODE_VALUES%) do for %%c in (%CC_VALUES%) do (
set PATH=%clang_path%..\lib\clang\%clang_version%\lib\windows;!PATH!
)
rem raddbg dies under asan on statup
call build.bat meta %%c %%m asan raddbg || exit /b 1
rem TODO: unblock asan
call build.bat meta %%c %%m raddbg_non_graphical || exit /b 1
rem clang does not compile with asan in release mode because it runs out of memory
if "%%c" equ "clang" (
@@ -37,7 +37,7 @@ for %%m in (%MODE_VALUES%) do for %%c in (%CC_VALUES%) do (
)
pushd build
torture -s:Dbg* %* || exit /b 1
torture || exit /b 1
popd
endlocal