Update make.bat

When choosing another compiler than the default tcc (ie. msvc), this change will prevent make.bat to automatically download and install tcc.
pull/13899/head
lazalong 2022-04-02 13:04:35 +11:00
parent af79c1e6ef
commit 8fdff7569b
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,6 @@ exit /b %ERRORLEVEL%
:build :build
if !flag_local! NEQ 1 ( if !flag_local! NEQ 1 (
call :download_tcc
if %ERRORLEVEL% NEQ 0 goto :error if %ERRORLEVEL% NEQ 0 goto :error
pushd "%vc_dir%" && ( pushd "%vc_dir%" && (
echo Updating vc... echo Updating vc...
@ -118,6 +117,7 @@ if not [!compiler!] == [] goto :!compiler!_strap
REM By default, use tcc, since we have it prebuilt: REM By default, use tcc, since we have it prebuilt:
:tcc_strap :tcc_strap
:tcc32_strap :tcc32_strap
call :download_tcc
echo ^> Attempting to build v_win.c with "!tcc_exe!" echo ^> Attempting to build v_win.c with "!tcc_exe!"
"!tcc_exe!" -Bthirdparty/tcc -Ithirdparty/stdatomic/win -bt10 -g -w -o v.exe vc\v_win.c -ladvapi32 "!tcc_exe!" -Bthirdparty/tcc -Ithirdparty/stdatomic/win -bt10 -g -w -o v.exe vc\v_win.c -ladvapi32
if %ERRORLEVEL% NEQ 0 goto :compile_error if %ERRORLEVEL% NEQ 0 goto :compile_error