Skip to content

Commit 35cf0a5

Browse files
Merge pull request #1414 from jasonrandrews/review
Update Arm Compiler for Linux install guide
2 parents 238025d + 4a9af5e commit 35cf0a5

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

content/install-guides/acfl.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,33 @@ install takes place **after** ACfL, you will no longer be able to fully
142142
uninstall ACfL.
143143
{{% /notice %}}
144144

145+
## Download and install using System Packages - Ubuntu Linux
146+
147+
Arm Compiler for Linux is available to install with the Ubuntu system package manager `apt` command.
148+
149+
### Setup the ACfL package repository:
150+
151+
Add the ACfL `apt` package repository to your Ubuntu 20.04 or 22.04 system:
152+
153+
```bash { target="ubuntu:latest" }
154+
sudo apt update
155+
sudo apt install -y curl
156+
source /etc/os-release
157+
curl "https://developer.arm.com/packages/ACfL%3A${NAME}-${VERSION_ID/%.*/}/${VERSION_CODENAME}/Release.key" | sudo tee /etc/apt/trusted.gpg.d/developer-arm-com.asc
158+
echo "deb https://developer.arm.com/packages/ACfL%3A${NAME}-${VERSION_ID/%.*/}/${VERSION_CODENAME}/ ./" | sudo tee /etc/apt/sources.list.d/developer-arm-com.list
159+
sudo apt update
160+
```
161+
162+
The ACfL Ubuntu package repository is now ready to use.
163+
164+
### Install ACfL
165+
166+
Download and install Arm Compiler for Linux with:
167+
168+
```bash { target="ubuntu:latest" }
169+
sudo apt install acfl
170+
```
171+
145172
### Set up environment
146173

147174
Arm Compiler for Linux uses environment modules to dynamically modify your user environment. Refer to the [Environment Modules documentation](https://lmod.readthedocs.io/en/latest/#id) for more information.

0 commit comments

Comments
 (0)