blob: 2493eb6ee7dbd8fc629343852e45ec1a070911f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
set CXX=cl.exe
set CC=cl.exe
set AR=lib.exe
set LD=link.exe
%CXX% /nologo /MT /std:c++20 /D_X86_ /EHsc /Isrc /Fo:build\ ctor.cc src\bootstrap.cc /link /out:snot.exe
@if %errorlevel% neq 0 exit /b %errorlevel%
snot.exe
@if %errorlevel% neq 0 exit /b %errorlevel%
%CXX% /nologo /std:c++20 /D_X86_ /EHsc /Isrc /Fo:build\ ctor.cc /c
@if %errorlevel% neq 0 exit /b %errorlevel%
%CXX% /nologo /std:c++20 /D_X86_ /EHsc /Isrc /Fo:build\test\ test\ctor.cc /c
@if %errorlevel% neq 0 exit /b %errorlevel%
%LD% /nologo build\libctor.lib build\ctor.obj build\test\ctor.obj /subsystem:console /out:snot.exe
@if %errorlevel% neq 0 exit /b %errorlevel%
snot.exe configure --ctor-includedir=src --ctor-libdir=build
@if %errorlevel% neq 0 exit /b %errorlevel%
|