[libcxx-commits] [PATCH] D65449: gn build: Use rebase_path on filename args to libcxx/utils/gen_link_script.py

Hans Wennborg via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Tue Jul 30 07:21:27 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL367314: gn build: Use rebase_path on filename args to libcxx/utils/gen_link_script.py (authored by hans, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D65449?vs=212333&id=212335#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D65449/new/

https://reviews.llvm.org/D65449

Files:
  llvm/trunk/utils/gn/secondary/libcxx/src/BUILD.gn


Index: llvm/trunk/utils/gn/secondary/libcxx/src/BUILD.gn
===================================================================
--- llvm/trunk/utils/gn/secondary/libcxx/src/BUILD.gn
+++ llvm/trunk/utils/gn/secondary/libcxx/src/BUILD.gn
@@ -236,9 +236,9 @@
       ]
       args = [
         "--input",
-        "$runtimes_dir/libc++.so.0",
+        rebase_path("$runtimes_dir/libc++.so.0", root_build_dir),
         "--output",
-        "$runtimes_dir/libc++.so",
+        rebase_path("$runtimes_dir/libc++.so", root_build_dir),
         "c++abi",
         "unwind",
       ]


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D65449.212335.patch
Type: text/x-patch
Size: 572 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20190730/bd087567/attachment.bin>


More information about the libcxx-commits mailing list