From d76e94bba83ddd313d1065e0c60c46edd508de6b Mon Sep 17 00:00:00 2001 From: spaceface777 Date: Fri, 19 Jun 2020 14:09:34 +0200 Subject: [PATCH] make.bat: small tcc self-compilation cleanup --- make.bat | 6 ------ 1 file changed, 6 deletions(-) diff --git a/make.bat b/make.bat index b433b6795a..07b0700999 100644 --- a/make.bat +++ b/make.bat @@ -122,12 +122,6 @@ if exist "%tcc_path%" ( call "%tcc_exe%" -std=c99 -municode -lws2_32 -lshell32 -ladvapi32 -bt10 -w -o v.exe vc\v_win.c if %ERRORLEVEL% NEQ 0 goto :compile_error -REM TODO: delete this when the tcc bootstrapping logic is merged to master -v.exe -o vtcc.c cmd\v -call "%tcc_exe%" -std=c99 -municode -lws2_32 -lshell32 -ladvapi32 -bt10 -w -o v.exe vtcc.c -if %ERRORLEVEL% NEQ 0 goto :compile_error -del vtcc.c - v.exe -cc "%tcc_exe%" self > NUL if %ERRORLEVEL% NEQ 0 goto :compile_error goto :success