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
@@ -150,25 +147,23 @@ Arm Compiler for Linux is available to install with the Ubuntu system package ma
150
147
151
148
#### Set up the ACfL package repository
152
149
153
-
Add the ACfL `apt` package repository to your Ubuntu 20.04 or 22.04 system:
150
+
Add the ACfL `apt` package repository to your system. These instructions apply for Ubuntu 22.04. You can check the [available versions](https://developer.arm.com/packages/) for other releases.
154
151
155
-
```bash { target="ubuntu:latest" }
152
+
After that, the ACfL Ubuntu package repository is now ready to use. Run the commands below to install the dependencies needed.
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
160
-
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
@@ -227,39 +222,35 @@ The ACfL tools are now ready to use.
227
222
228
223
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.
229
224
230
-
Set up the environment, for example, in your `.bashrc` and add module files.
225
+
Set up the environment, for example, in your `.bashrc` and add module files. Then, list the available modules:
231
226
232
227
#### Ubuntu Linux:
233
228
234
-
```bash { target="ubuntu:latest" }
235
-
echo". /usr/share/modules/init/bash">>~/.bashrc
236
-
echo"module use /opt/arm/modulefiles">>~/.bashrc
237
-
.~/.bashrc
229
+
```bash { target="ubuntu:latest" pre_cmd=". /usr/share/modules/init/bash" pre_cmd="module use /opt/arm/modulefiles" }
Using the `--accept` switch you automatically accept the End User License Agreement and the packages are installed to the `/opt/arm` directory.
@@ -190,13 +190,13 @@ module avail
190
190
The output should be similar to:
191
191
192
192
```output
193
-
armpl/25.04.0_gcc
193
+
armpl/25.04.1_gcc
194
194
```
195
195
196
196
Load the appropriate module:
197
197
198
198
```console
199
-
module load armpl/25.04.0_gcc
199
+
module load armpl/25.04.1_gcc
200
200
```
201
201
202
202
You can now compile and test the examples included in the `/opt/arm/<armpl_dir>/examples/`, or `<install_dir>/<armpl_dir>/examples/` directory, if you have installed to a different location than the default.
0 commit comments