@@ -102,11 +102,11 @@ Fetch the ACfL installers:
102102#### Ubuntu Linux:
103103
104104``` bash { target="ubuntu:latest" }
105- wget https://developer.arm.com/-/cdn-downloads/permalink/Arm-Compiler-for-Linux/Version_24.10/arm-compiler-for-linux_24.10_Ubuntu -22.04_aarch64.tar
105+ wget https://developer.arm.com/-/cdn-downloads/permalink/Arm-Compiler-for-Linux/Version_24.10.1 /arm-compiler-for-linux_24.10.1_Ubuntu -22.04_aarch64.tar
106106```
107107#### Red Hat Linux:
108108``` bash { target="fedora:latest" }
109- wget https://developer.arm.com/-/cdn-downloads/permalink/Arm-Compiler-for-Linux/Version_24.10/arm-compiler-for-linux_24.10_RHEL -9_aarch64.tar
109+ wget https://developer.arm.com/-/cdn-downloads/permalink/Arm-Compiler-for-Linux/Version_24.10.1 /arm-compiler-for-linux_24.10.1_RHEL -9_aarch64.tar
110110```
111111
112112### Install
@@ -119,18 +119,18 @@ Each command sequence includes accepting the license agreement to automate the i
119119
120120``` bash { target="ubuntu:latest", env="DEBIAN_FRONTEND=noninteractive" }
121121sudo -E apt-get -y install environment-modules python3 libc6-dev
122- tar -xvf arm-compiler-for-linux_24.10_Ubuntu -22.04_aarch64.tar
123- cd ./arm-compiler-for-linux_24.10_Ubuntu -22.04
124- sudo ./arm-compiler-for-linux_24.10_Ubuntu -22.04.sh --accept
122+ tar -xvf arm-compiler-for-linux_24.10.1_Ubuntu -22.04_aarch64.tar
123+ cd ./arm-compiler-for-linux_24.10.1_Ubuntu -22.04
124+ sudo ./arm-compiler-for-linux_24.10.1_Ubuntu -22.04.sh --accept
125125```
126126
127127#### Red Hat Linux:
128128
129129``` bash { target="fedora:latest" }
130130sudo yum -y install environment-modules python3 glibc-devel
131- tar -xvf arm-compiler-for-linux_24.10_RHEL -9_aarch64.tar
132- cd arm-compiler-for-linux_24.10_RHEL -9
133- sudo ./arm-compiler-for-linux_24.10_RHEL -9.sh --accept
131+ tar -xvf arm-compiler-for-linux_24.10.1_RHEL -9_aarch64.tar
132+ cd arm-compiler-for-linux_24.10.1_RHEL -9
133+ sudo ./arm-compiler-for-linux_24.10.1_RHEL -9.sh --accept
134134```
135135
136136{{% notice Warning %}}
@@ -173,7 +173,7 @@ module avail
173173To configure Arm Compiler for Linux:
174174
175175``` bash { env_source="~/.bashrc" }
176- module load acfl/24.10
176+ module load acfl/24.10.1
177177```
178178
179179To configure GCC:
@@ -237,7 +237,7 @@ ACfL is now [ready to use](#armclang).
237237To get started with the Arm C/C++ Compiler and compile a simple application follow the steps below.
238238
239239Check that the correct compiler version is being used:
240- ``` bash { env_source="~/.bashrc", pre_cmd="module load acfl/24.10" }
240+ ``` bash { env_source="~/.bashrc", pre_cmd="module load acfl/24.10.1 " }
241241armclang --version
242242```
243243
@@ -255,13 +255,13 @@ int main()
255255
256256Build the application with:
257257
258- ``` console { env_source="~/.bashrc", pre_cmd="module load acfl/24.10" }
258+ ``` console { env_source="~/.bashrc", pre_cmd="module load acfl/24.10.1 " }
259259armclang hello.c -o hello
260260```
261261
262262Run the application with:
263263
264- ``` bash { env_source="~/.bashrc", pre_cmd="module load acfl/24.10" }
264+ ``` bash { env_source="~/.bashrc", pre_cmd="module load acfl/24.10.1 " }
265265./hello
266266```
267267
@@ -275,7 +275,7 @@ Hello, C World!
275275To get started with the Arm Fortran Compiler and compile a simple application follow the steps below.
276276
277277Check that the correct compiler version is being used:
278- ``` bash { env_source="~/.bashrc", pre_cmd="module load acfl/24.10" }
278+ ``` bash { env_source="~/.bashrc", pre_cmd="module load acfl/24.10.1 " }
279279armflang --version
280280```
281281
@@ -289,12 +289,12 @@ end program hello
289289```
290290
291291Build the application with:
292- ``` bash { env_source="~/.bashrc", pre_cmd="module load acfl/24.10" }
292+ ``` bash { env_source="~/.bashrc", pre_cmd="module load acfl/24.10.1 " }
293293armflang hello.f90 -o hello
294294```
295295
296296Run the application with:
297- ``` bash { env_source="~/.bashrc", pre_cmd="module load acfl/24.10" }
297+ ``` bash { env_source="~/.bashrc", pre_cmd="module load acfl/24.10.1 " }
298298./hello
299299```
300300
0 commit comments