Skip to content

Commit b6b48ef

Browse files
committed
Update README.md (#370)
1 parent 4d86da1 commit b6b48ef

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

README.md

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ The AMD Open Source Driver for Vulkan is designed to support the following AMD G
2020
2121
### Operating System Support
2222
The AMD Open Source Driver for Vulkan is designed to support following distros and versions on both the AMDGPU upstream driver stack and the [AMDGPU Pro driver stack](https://www.amd.com/en/support/linux-drivers):
23+
* Ubuntu 24.04 (amd64 version)
2324
* Ubuntu 22.04 (amd64 version)
24-
* Ubuntu 20.04 (amd64 version)
2525
* RedHat 8.6 (x86-64 version)
2626
* RedHat 9.0 (x86-64 version)
2727

@@ -110,27 +110,27 @@ pip3 install jinja2 ruamel.yaml
110110
### Install shader compiler tools
111111
Shader compiler tools such as [DirectXShaderCompiler](https://github.com/microsoft/DirectXShaderCompiler) and [glslang](https://github.com/KhronosGroup/glslang) need to be installed to build raytracing support.
112112

113-
#### Ubuntu 20.04
114-
It is recommended to install them from [VulkanSDK](https://packages.lunarg.com/) 1.3.280 or higher.
113+
#### Ubuntu 22.04
114+
It is recommended to install them from [VulkanSDK](https://packages.lunarg.com/) 1.3.290 or higher.
115115

116-
Ubuntu 20.04 (Focal Fossa)
116+
Ubuntu 22.04 (Jammy)
117117
```
118-
wget -qO - https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo apt-key add -
119-
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-1.3.280-focal.list https://packages.lunarg.com/vulkan/1.3.280/lunarg-vulkan-1.3.280-focal.list
118+
wget -qO- https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo tee /etc/apt/trusted.gpg.d/lunarg.asc
119+
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-1.3.290-jammy.list https://packages.lunarg.com/vulkan/1.3.290/lunarg-vulkan-1.3.290-jammy.list
120120
sudo apt update
121-
sudo apt install dxc glslang-tools
121+
sudo apt install vulkan-sdk
122122
```
123123
#### Others
124124
Get [DirectXShaderCompiler](https://github.com/microsoft/DirectXShaderCompiler) and [glslang](https://github.com/KhronosGroup/glslang) source code and build tools on local.
125125
```
126126
#!/bin/bash
127127
128128
if [ ! -d DirectXShaderCompiler ]; then
129-
git clone --depth=1 -b release-1.7.2308 https://github.com/microsoft/DirectXShaderCompiler.git
129+
git clone --depth=1 -b release-1.8.2403 https://github.com/microsoft/DirectXShaderCompiler.git
130130
fi
131131
132132
if [ ! -d glslang ]; then
133-
git clone --depth=1 -b sdk-1.3.280 https://github.com/KhronosGroup/glslang.git
133+
git clone --depth=1 -b vulkan-sdk-1.3.290.0 https://github.com/KhronosGroup/glslang.git
134134
fi
135135
136136
cd DirectXShaderCompiler
@@ -155,8 +155,6 @@ export LD_LIBRARY_PATH=<DirectXShaderCompiler>/builds/lib:$LD_LIBRARY_PATH
155155
```
156156
mkdir ~/bin
157157
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
158-
# Replacing python with python3 is only needed on Ubuntu 20.04 if the 'python' executable is not available
159-
sed -i s/python/python3/ ~/bin/repo
160158
chmod a+x ~/bin/repo
161159
export PATH=~/bin:"$PATH"
162160
```
@@ -193,7 +191,7 @@ You can download and install the SDK package [here](https://vulkan.lunarg.com/sd
193191
### Install dependencies
194192
#### Ubuntu
195193
```
196-
sudo apt install libssl1.1
194+
sudo apt install libssl3
197195
```
198196
#### RedHat
199197
```
@@ -251,13 +249,13 @@ cmake --build builds/Release64 --target makePackage
251249
You could also download pre-built package from https://github.com/GPUOpen-Drivers/AMDVLK/releases for each code promotion in master branch.
252250

253251
Below is the installation instruction:
254-
#### Ubuntu 20.04, 22.04
252+
#### Ubuntu
255253
```
256254
sudo dpkg -r amdvlk # If old version is installed on the machine, remove it first
257255
sudo dpkg -i amdvlk_x.x.x_amd64.deb
258256
sudo apt-get -f install
259257
```
260-
#### RedHat 8.6, 9.0
258+
#### RedHat
261259
```
262260
sudo rpm -e amdvlk # If old version is installed on the machine, remove it first
263261
sudo rpm -i amdvlk-x.x.x.x86_64.rpm

0 commit comments

Comments
 (0)