From 5082cf8961731be9ceae598be0df2f1e2d9b8fc3 Mon Sep 17 00:00:00 2001 From: Nirmal Unnikrishnan Date: Tue, 11 Jun 2024 13:24:59 -0500 Subject: [PATCH] SWDEV-467155 : Add llvm to RPATH search path Change-Id: I3598d7938bd63b06fd9cf14906c4ed3e7cc52a82 [ROCm/rocm-core commit: 2cc55b27acb10e3c3aa7015a1de40566693b237c] --- projects/rocm-core/runpath_to_rpath.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/rocm-core/runpath_to_rpath.py b/projects/rocm-core/runpath_to_rpath.py index c4415124f7..f6a9203402 100644 --- a/projects/rocm-core/runpath_to_rpath.py +++ b/projects/rocm-core/runpath_to_rpath.py @@ -169,7 +169,8 @@ def main(): sys.exit(0) # Find the elf files in the serach path and update DT_RUNPATH to DT_RPATH - excludes = ['llvm', 'rocm-llvm', 'rocm-llvm-alt'] + # SWDEV-467155 : remove the exclusion of llvm folder + excludes = [] update_rpath(args.searchdir, excludes) # Update rocm clang configs to default to DT_RPATH update_compiler_config(args.searchdir)