You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/install-guides/acfl.md
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -142,6 +142,33 @@ install takes place **after** ACfL, you will no longer be able to fully
142
142
uninstall ACfL.
143
143
{{% /notice %}}
144
144
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
+
145
172
### Set up environment
146
173
147
174
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