[PATCH] D152559: [gn build] Fix per target runtime directory path

Paul Kirth via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 9 10:01:32 PDT 2023


paulkirth created this revision.
Herald added a project: All.
paulkirth requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D152559

Files:
  llvm/utils/gn/secondary/clang/runtimes.gni


Index: llvm/utils/gn/secondary/clang/runtimes.gni
===================================================================
--- llvm/utils/gn/secondary/clang/runtimes.gni
+++ llvm/utils/gn/secondary/clang/runtimes.gni
@@ -7,7 +7,7 @@
 }
 
 if (clang_enable_per_target_runtime_dir) {
-  runtimes_dir = "$clang_resource_dir/$llvm_target_triple/lib"
+  runtimes_dir = "$clang_resource_dir/lib/$llvm_target_triple"
 } else {
   runtimes_dir = "$root_build_dir/lib"
 }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D152559.530002.patch
Type: text/x-patch
Size: 458 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230609/5a3f59ba/attachment.bin>


More information about the llvm-commits mailing list