From 1e3eeeaadbcdaff338c75dc2b92496d3fcfc5da1 Mon Sep 17 00:00:00 2001 From: peterjunpark Date: Thu, 12 Feb 2026 11:17:48 -0500 Subject: [PATCH] update LD_LIBRARY_PATH config (#5964) --- docs/install/includes/post-install.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/install/includes/post-install.rst b/docs/install/includes/post-install.rst index 0e2fc00c6..9485f88d2 100644 --- a/docs/install/includes/post-install.rst +++ b/docs/install/includes/post-install.rst @@ -38,7 +38,7 @@ installation. sudo tee /etc/profile.d/set-rocm-env.sh << EOF export ROCM_PATH=$ROCM_INSTALL_PATH export PATH=\$PATH:\$ROCM_PATH/bin - export LD_LIBRARY_PATH=\$ROCM_PATH/lib + export LD_LIBRARY_PATH=\$ROCM_PATH/lib:\$ROCM_PATH/llvm/lib:\$ROCM_PATH/lib/rocprofiler-systems EOF sudo chmod +x /etc/profile.d/set-rocm-env.sh source /etc/profile.d/set-rocm-env.sh @@ -57,7 +57,7 @@ installation. # Configure ROCm PATH. Make sure you're in the therock-tarball directory before proceeding. export ROCM_PATH=$PWD/install export PATH=$PATH:$ROCM_PATH/bin - export LD_LIBRARY_PATH=$ROCM_PATH/lib + export LD_LIBRARY_PATH=$ROCM_PATH/lib:$ROCM_PATH/llvm/lib:$ROCM_PATH/lib/rocprofiler-systems 2. After modifying your shell configuration, apply the change to your current session by sourcing your updated shell