Skip to content

Commit

Permalink
New artifactory links (#11)
Browse files Browse the repository at this point in the history
* Update armclang_install.sh

* Update armgcc_install.sh

* Update avh-fvp_install.sh

* Update cmsistoolbox_install.sh

* Update README.md
  • Loading branch information
MatthiasHertel80 authored Feb 5, 2024
1 parent e836cf3 commit 31aa0ab
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ To facilitate tool integration Arm provides critical foundation tools in a tools

URL / Tool | Description
:--------------|:-------------------
[artifacts.keil.arm.com/avh/](https://artifacts.keil.arm.com/avh/) | [Arm Virtual Hardware FVP Models](https://arm-software.github.io/AVH/main/simulation/html/Using.html)
[artifacts.keil.arm.com/cmsis-toolbox/](https://artifacts.keil.arm.com/cmsis-toolbox/) | [CLI Build System for CMSIS-Pack based projects](https://github.com/Open-CMSIS-Pack/cmsis-toolbox/blob/main/docs/README.md#cmsis-toolbox)
[artifacts.keil.arm.com/arm-compiler/](https://artifacts.keil.arm.com/arm-compiler/) | [Arm Compiler for Embedded](https://developer.arm.com/Tools%20and%20Software/Arm%20Compiler%20for%20Embedded) (commercial)
[artifacts.keil.arm.com/arm-none-eabi-gcc/](https://artifacts.keil.arm.com/arm-none-eabi-gcc/) | [Arm GNU Toolchain](https://developer.arm.com/Tools%20and%20Software/GNU%20Toolchain) (community supported); not recommended for Cortex-M with Helium
[artifacts.tools.arm.com/avh/](https://artifacts.tools.arm.com/avh/) | [Arm Virtual Hardware FVP Models](https://arm-software.github.io/AVH/main/simulation/html/Using.html)
[artifacts.tools.arm.com/cmsis-toolbox/](https://artifacts.tools.arm.com/cmsis-toolbox/) | [CLI Build System for CMSIS-Pack based projects](https://github.com/Open-CMSIS-Pack/cmsis-toolbox/blob/main/docs/README.md#cmsis-toolbox)
[artifacts.tools.arm.com/arm-compiler/](https://artifacts.tools.arm.com/arm-compiler/) | [Arm Compiler for Embedded](https://developer.arm.com/Tools%20and%20Software/Arm%20Compiler%20for%20Embedded) (commercial)
[artifacts.tools.arm.com/arm-none-eabi-gcc/](https://artifacts.tools.arm.com/arm-none-eabi-gcc/) | [Arm GNU Toolchain](https://developer.arm.com/Tools%20and%20Software/GNU%20Toolchain) (community supported); not recommended for Cortex-M with Helium
[github.com/ARM-software/LLVM-embedded-toolchain-for-Arm/](https://github.com/ARM-software/LLVM-embedded-toolchain-for-Arm/releases/latest/) | [Arm LLVM Embedded Toolchain](https://learn.arm.com/install-guides/llvm-embedded/) (community supported)

## Github Action workflow templates
Expand Down
2 changes: 1 addition & 1 deletion docker_base/armclang_install.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
wget https://artifacts.keil.arm.com/arm-compiler/6.20/21/standalone-linux-x86_64-rel.tgz -nv
wget https://artifacts.tools.arm.com/arm-compiler/6.20/21/standalone-linux-x86_64-rel.tgz -nv
mkdir ./ArmCompilerforEmbedded6.20
tar xvfz ./standalone-linux-x86_64-rel.tgz -C ./ArmCompilerforEmbedded6.20
chown -R arm_mlops_docker ./ArmCompilerforEmbedded6.20
4 changes: 2 additions & 2 deletions docker_base/armgcc_install.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
wget https://artifacts.keil.arm.com/arm-none-eabi-gcc/12.3.1/arm-gnu-toolchain-x86_64-arm-none-eabi.tar.bz2 -nv
wget https://artifacts.tools.arm.com/arm-none-eabi-gcc/12.3.1/arm-gnu-toolchain-x86_64-arm-none-eabi.tar.bz2 -nv
tar -xf arm-gnu-toolchain-x86_64-arm-none-eabi.tar.bz2 -C /home/arm_mlops_docker
chown -R arm_mlops_docker /home/arm_mlops_docker/arm-gnu-toolchain-12.3.rel1-x86_64-arm-none-eabi/
chown -R arm_mlops_docker /home/arm_mlops_docker/arm-gnu-toolchain-12.3.rel1-x86_64-arm-none-eabi/
2 changes: 1 addition & 1 deletion docker_base/avh-fvp_install.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
wget https://artifacts.keil.arm.com/avh/11.22.39/avh-fvp-linux-amd64.tar.gz -nv
wget https://artifacts.tools.arm.com/avh/11.22.39/avh-fvp-linux-amd64.tar.gz -nv
mkdir /home/arm_mlops_docker/avh-fvp-11.22.39
tar -xvf avh-fvp-linux-amd64.tar.gz -C /home/arm_mlops_docker/avh-fvp-11.22.39
rm /home/arm_mlops_docker/avh-fvp-11.22.39/avh-linux-x86/bin/models/libpython3.9.so.1.0
Expand Down
2 changes: 1 addition & 1 deletion docker_base/cmsistoolbox_install.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
wget https://artifacts.keil.arm.com/cmsis-toolbox/2.1.0/cmsis-toolbox-linux-amd64.tar.gz -nv
wget https://artifacts.tools.arm.com/cmsis-toolbox/2.1.0/cmsis-toolbox-linux-amd64.tar.gz -nv
wget https://github.com/Kitware/CMake/releases/download/v3.27.4/cmake-3.27.4-linux-x86_64.sh -nv
tar -xf cmsis-toolbox-linux-amd64.tar.gz -C /home/arm_mlops_docker
chmod +x cmake-3.27.4-linux-x86_64.sh
Expand Down

0 comments on commit 31aa0ab

Please sign in to comment.