mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-24 13:52:38 +03:00
14dabf523a
* changes for xPack 12.3 * support for gcc 13.2 * Update tools name * Add new linux toolchain * Fixed copro submodule * Fix gdb-py * Fixes for c++ apps * Fix gdb-py3, add udev rules * Fixed udev rules location * Add MacOS arm, fix fbt toolchain download * Fixed downloading error file * fbt: fixed linker warnings; removed gcc 10 from list of supported toolchains * ufbt: fixed supported toolchain versions * nfc: replaced local malloc with calloc * restored code with Warray-bounds to older state * Update fbtenv.cmd * Suppressing warnings * Bump to 25 * Bump to 26 * lint: reformatted macros for new clang-format * Bump to 27 * Fix m type word * Bump to 28 * furi: added FURI_DEPRECATED macro * scripts: toolchain download on Windows: fixing partially extracted cases Co-authored-by: DrunkBatya <drunkbatya.js@gmail.com>
52 lines
2.0 KiB
PowerShell
52 lines
2.0 KiB
PowerShell
Set-StrictMode -Version 2.0
|
|
$ErrorActionPreference = "Stop"
|
|
[Net.ServicePointManager]::SecurityProtocol = "tls12, tls11, tls"
|
|
# TODO FL-3536: fix path to download_dir
|
|
$download_dir = (Get-Item "$PSScriptRoot\..\..").FullName
|
|
$toolchain_version = $args[0]
|
|
$toolchain_target_path = $args[1]
|
|
|
|
$toolchain_url = "https://update.flipperzero.one/builds/toolchain/gcc-arm-none-eabi-12.3-x86_64-windows-flipper-$toolchain_version.zip"
|
|
$toolchain_dist_folder = "gcc-arm-none-eabi-12.3-x86_64-windows-flipper"
|
|
$toolchain_zip = "$toolchain_dist_folder-$toolchain_version.zip"
|
|
|
|
$toolchain_zip_temp_path = "$download_dir\$toolchain_zip"
|
|
$toolchain_dist_temp_path = "$download_dir\$toolchain_dist_folder"
|
|
|
|
if (Test-Path -LiteralPath "$toolchain_target_path") {
|
|
Write-Host -NoNewline "Removing old Windows toolchain.."
|
|
Remove-Item -LiteralPath "$toolchain_target_path" -Force -Recurse
|
|
Write-Host "done!"
|
|
}
|
|
if (!(Test-Path -Path "$toolchain_zip_temp_path" -PathType Leaf)) {
|
|
Write-Host -NoNewline "Downloading Windows toolchain.."
|
|
$wc = New-Object net.webclient
|
|
$wc.Downloadfile("$toolchain_url", "$toolchain_zip_temp_path")
|
|
Write-Host "done!"
|
|
}
|
|
|
|
if (!(Test-Path -LiteralPath "$toolchain_target_path\..")) {
|
|
New-Item "$toolchain_target_path\.." -ItemType Directory -Force
|
|
}
|
|
|
|
if (Test-Path -LiteralPath "$toolchain_dist_temp_path") {
|
|
Write-Host "Cleaning up temp toolchain path.."
|
|
Remove-Item -LiteralPath "$toolchain_dist_temp_path" -Force -Recurse
|
|
}
|
|
|
|
Write-Host -NoNewline "Extracting Windows toolchain.."
|
|
# This is faster than Expand-Archive
|
|
Add-Type -Assembly "System.IO.Compression.Filesystem"
|
|
[System.IO.Compression.ZipFile]::ExtractToDirectory("$toolchain_zip_temp_path", "$download_dir")
|
|
# Expand-Archive -LiteralPath "$toolchain_zip_temp_path" -DestinationPath "$download_dir"
|
|
|
|
Write-Host -NoNewline "moving.."
|
|
Move-Item -LiteralPath "$toolchain_dist_temp_path" -Destination "$toolchain_target_path" -Force
|
|
Write-Host "done!"
|
|
|
|
Write-Host -NoNewline "Cleaning up temporary files.."
|
|
Remove-Item -LiteralPath "$toolchain_zip_temp_path" -Force
|
|
Write-Host "done!"
|
|
|
|
# dasdasd
|