mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-18 10:51:54 +03:00
20 lines
1.1 KiB
Batchfile
20 lines
1.1 KiB
Batchfile
@echo off
|
|
set "flipper_toolchain_version=2"
|
|
set "toolchainRoot=%~dp0toolchain\i686-windows"
|
|
set "SCONS_DEFAULT_FLAGS=-Q --warn=target-not-built"
|
|
if not exist "%~dp0.git" (
|
|
echo ".git" directory not found, please clone repo via "git clone --recursive"
|
|
exit /B 1
|
|
)
|
|
git submodule update --init
|
|
if not exist "%toolchainRoot%" (
|
|
powershell -ExecutionPolicy Bypass -File %~dp0scripts\toolchain\windows-toolchain-download.ps1 "%flipper_toolchain_version%"
|
|
)
|
|
if not exist "%toolchainRoot%\VERSION" (
|
|
powershell -ExecutionPolicy Bypass -File %~dp0scripts\toolchain\windows-toolchain-download.ps1 "%flipper_toolchain_version%"
|
|
)
|
|
set /p real_toolchain_version=<%toolchainRoot%\VERSION
|
|
if not "%real_toolchain_version%" == "%flipper_toolchain_version%" (
|
|
powershell -ExecutionPolicy Bypass -File %~dp0scripts\toolchain\windows-toolchain-download.ps1 "%flipper_toolchain_version%"
|
|
)
|
|
cmd /V /C "set "PATH=%toolchainRoot%\python;%toolchainRoot%\bin;%toolchainRoot%\protoc\bin;%toolchainRoot%\openocd\bin;%PATH%" && python lib\scons\scripts\scons.py %SCONS_DEFAULT_FLAGS% %*" |