[PATCH] D118252: Adding cmake to the exported list of tarballs

Konrad Wilhelm Kleine via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jan 26 07:45:21 PST 2022


kwk created this revision.
kwk added a reviewer: tstellar.
Herald added a reviewer: sscalpone.
kwk requested review of this revision.
Herald added a reviewer: jdoerfert.
Herald added subscribers: llvm-commits, sstefan1.
Herald added a project: LLVM.

Since 0eed292fbae22a8856682b07e1cb968424b49941 <https://reviews.llvm.org/rG0eed292fbae22a8856682b07e1cb968424b49941> or
https://reviews.llvm.org/D88458 there exists a top-level `cmake` directory
that is shared by some projects when they add the containing `Modules`
directory to the `CMAKE_MODULE_PATH`.

When you're doing standalone builds of LLVM and its subprojects, there's
currently no way to get a tarball for this `cmake` directory. This patch
changes this. It generates a git archive tar ball for the `cmake`
directory (~5,0K in size).

If you don't want to consume the all-in-one `llvm-project` tarball (~101M
in size) for a small subproject, then we need this change.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D118252

Files:
  llvm/utils/release/export.sh


Index: llvm/utils/release/export.sh
===================================================================
--- llvm/utils/release/export.sh
+++ llvm/utils/release/export.sh
@@ -13,7 +13,7 @@
 
 set -e
 
-projects="llvm clang compiler-rt libcxx libcxxabi libclc clang-tools-extra polly lldb lld openmp libunwind flang"
+projects="llvm clang compiler-rt libcxx libcxxabi libclc clang-tools-extra polly lldb lld openmp libunwind flang cmake"
 
 release=""
 rc=""


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D118252.403267.patch
Type: text/x-patch
Size: 457 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220126/75ec755c/attachment.bin>


More information about the llvm-commits mailing list