[libcxx-commits] [PATCH] D149752: WIP: Debug symlink creation
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu May 4 06:58:41 PDT 2023
ldionne updated this revision to Diff 519476.
ldionne added a comment.
Herald added subscribers: libcxx-commits, arichardson.
Herald added a project: libc++.
Herald added a reviewer: libc++.
Check file type
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D149752/new/
https://reviews.llvm.org/D149752
Files:
clang/foo
libcxx/utils/ci/buildkite-pipeline-clang.yml
llvm/cmake/modules/LLVMInstallSymlink.cmake
Index: llvm/cmake/modules/LLVMInstallSymlink.cmake
===================================================================
--- llvm/cmake/modules/LLVMInstallSymlink.cmake
+++ llvm/cmake/modules/LLVMInstallSymlink.cmake
@@ -17,7 +17,7 @@
endif()
set(outdir "${DESTDIR}${outdir}")
- message(STATUS "Creating ${name}")
+ message(STATUS "Creating ${name} with ${link_or_copy}")
execute_process(
COMMAND "${CMAKE_COMMAND}" -E ${link_or_copy} "${target}" "${name}"
Index: libcxx/utils/ci/buildkite-pipeline-clang.yml
===================================================================
--- libcxx/utils/ci/buildkite-pipeline-clang.yml
+++ libcxx/utils/ci/buildkite-pipeline-clang.yml
@@ -24,6 +24,10 @@
# but with the number of jobs we run daily, this can result in thousands of GB of network I/O.
- "cmake -S llvm -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=install -DLLVM_ENABLE_PROJECTS=\"clang;compiler-rt\""
- "ninja -C build install-clang install-clang-resource-headers"
+ - "file install/bin/clang-cl"
+ - "file install/bin/clang-cpp"
+ - "file install/bin/clang++"
+ - "file install/bin/clang-17"
- "buildkite-agent artifact upload --debug 'install/**/*'"
env:
CC: "clang-${LLVM_HEAD_VERSION}"
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D149752.519476.patch
Type: text/x-patch
Size: 1297 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230504/6fe12743/attachment.bin>
More information about the libcxx-commits
mailing list