@echo off set CXX=cl.exe set CC=cl.exe set AR=lib.exe set LD=link.exe cl /nologo /std:c++20 /D_X86_ /EHsc /Isrc /Fo:build\ ctor.cc src\bootstrap.cc /link /out:ctor.exe if %errorlevel% neq 0 exit /b %errorlevel% ctor.exe if %errorlevel% neq 0 exit /b %errorlevel% cl /nologo /std:c++20 /D_X86_ /EHsc /Isrc /Fo:build\ ctor.cc /c if %errorlevel% neq 0 exit /b %errorlevel% cl /nologo /std:c++20 /D_X86_ /EHsc /Isrc /Fo:build\test\ test\ctor.cc /c if %errorlevel% neq 0 exit /b %errorlevel% link /nologo build\libctor.lib build\ctor.obj build\test\ctor.obj /subsystem:console /out:ctor.exe if %errorlevel% neq 0 exit /b %errorlevel% ctor.exe configure --ctor-includedir=src --ctor-libdir=build if %errorlevel% neq 0 exit /b %errorlevel%