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.
33 lines
1010 B
33 lines
1010 B
@echo off |
|
echo uTun Full Build Script for MSYS2 UCRT64 |
|
echo ========================================= |
|
echo This will regenerate build system with autoreconf |
|
echo. |
|
|
|
pushd "%~dp0" |
|
|
|
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 with --full flag |
|
echo Starting MSYS2 UCRT64 environment for FULL REBUILD... |
|
echo Running: bash build.sh --full |
|
echo. |
|
call "%MSYS2_PATH%\msys2_shell.cmd" -ucrt64 -here -defterm -no-start -c "bash build.sh --full 2>&1 | tee build_full.log"
|
|
|