Skip to content

Commit b253270

Browse files
committed
Fix ARM_GCC_PATH
As of GCC 14.2.rel1 the top level structure from the windows zip has been removed.
1 parent 90a23f1 commit b253270

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

install-scripts/install-arm-gcc-toolchain.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ If ($gnuGccPathExists -eq $False -or $force) {
7070

7171
"Installing ARM GNU GCC toolchain..." | Write-Host -ForegroundColor White -NoNewline
7272

73-
# unzip toolchain
74-
Expand-Archive $output -DestinationPath $toolPath > $null
75-
7673
# update tool path to include versioned toolchain folder
7774
$toolPath = $toolPath + "\arm-gnu-toolchain-" + $Version + "-mingw-w64-i686-arm-none-eabi"
7875

76+
# unzip toolchain
77+
Expand-Archive $output -DestinationPath $toolPath > $null
78+
7979
"OK" | Write-Host -ForegroundColor Green
8080
}
8181
}

0 commit comments

Comments
 (0)