Fix build directory in README

This commit is contained in:
jaxl 2022-02-21 15:10:28 +08:00
parent 6c1c1c03ae
commit 79afd7b895
1 changed files with 6 additions and 6 deletions

View File

@ -176,8 +176,8 @@ sudo yum install openssl-libs
### Install Driver and JSON Files ### Install Driver and JSON Files
``` ```
sudo cmake --install xgl/builds/Release64 --component icd sudo cmake --install builds/Release64 --component icd
sudo cmake --install xgl/builds/Release32 --component icd sudo cmake --install builds/Release32 --component icd
``` ```
> If you want to install driver to customized directory, you can add "-DCMAKE_INSTALL_PREFIX={installation directory}" in the cmake build command. JSON files will be installed to /etc/vulkan/icd.d while other files will be installed to the installation directory you specified. > If you want to install driver to customized directory, you can add "-DCMAKE_INSTALL_PREFIX={installation directory}" in the cmake build command. JSON files will be installed to /etc/vulkan/icd.d while other files will be installed to the installation directory you specified.
@ -213,13 +213,13 @@ CommandBufferCombineDePreambles,1
You could generate the installation package with below command while building driver: You could generate the installation package with below command while building driver:
#### Ubuntu #### Ubuntu
``` ```
cmake -G Ninja -S xgl -B xgl/builds/Release64 [-DPACKAGE_VERSION=package version] cmake -G Ninja -S xgl -B builds/Release64 [-DPACKAGE_VERSION=package version]
cmake --build xgl/builds/Release64 --target makePackage cmake --build builds/Release64 --target makePackage
``` ```
#### RedHat #### RedHat
``` ```
cmake -G Ninja -S xgl -B xgl/builds/Release64 [-DPACKAGE_VERSION=package version] cmake -G Ninja -S xgl -B builds/Release64 [-DPACKAGE_VERSION=package version]
cmake --build xgl/builds/Release64 --target makePackage cmake --build builds/Release64 --target makePackage
``` ```
You could also download pre-built package from https://github.com/GPUOpen-Drivers/AMDVLK/releases for each code promotion in master branch. You could also download pre-built package from https://github.com/GPUOpen-Drivers/AMDVLK/releases for each code promotion in master branch.