You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
782 B
27 lines
782 B
@echo off |
|
echo uTun Build Script for MSYS2 UCRT64 |
|
echo. |
|
|
|
rem export http_proxy="http://192.168.29.1:9999" |
|
rem export https_proxy="http://192.168.29.1:9999" |
|
|
|
|
|
REM Default MSYS2 path |
|
set MSYS2_PATH=C:\msys64 |
|
|
|
REM Use environment variable if set |
|
if not "%MSYS2_ROOT%"=="" set MSYS2_PATH=%MSYS2_ROOT% |
|
if not "%MSYS2%"=="" set MSYS2_PATH=%MSYS2% |
|
|
|
REM Check if msys2_shell.cmd exists |
|
if not exist "%MSYS2_PATH%\msys2_shell.cmd" ( |
|
echo MSYS2 not found at %MSYS2_PATH% |
|
echo Please install MSYS2 from https://www.msys2.org/ |
|
echo or set MSYS2_ROOT environment variable. |
|
pause |
|
exit /b 1 |
|
) |
|
|
|
REM Launch MSYS2 UCRT64 shell and run build script |
|
echo Starting MSYS2 UCRT64 environment... |
|
call "%MSYS2_PATH%\msys2_shell.cmd" -ucrt64 -here -c "bash build.sh > build_win.log 2>&1"
|
|
|