Skip to content

Commit b0ed9c8

Browse files
Merge pull request #1382 from garyjcarroll/main
Update version for ACfL 24.10.1 release
2 parents 8491e41 + 4e8c3d8 commit b0ed9c8

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

content/install-guides/acfl.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -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" }
121121
sudo -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" }
130130
sudo 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
173173
To 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

179179
To configure GCC:
@@ -237,7 +237,7 @@ ACfL is now [ready to use](#armclang).
237237
To get started with the Arm C/C++ Compiler and compile a simple application follow the steps below.
238238

239239
Check 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" }
241241
armclang --version
242242
```
243243

@@ -255,13 +255,13 @@ int main()
255255

256256
Build 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" }
259259
armclang hello.c -o hello
260260
```
261261

262262
Run 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!
275275
To get started with the Arm Fortran Compiler and compile a simple application follow the steps below.
276276

277277
Check 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" }
279279
armflang --version
280280
```
281281

@@ -289,12 +289,12 @@ end program hello
289289
```
290290

291291
Build 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" }
293293
armflang hello.f90 -o hello
294294
```
295295

296296
Run 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

Comments
 (0)