From 54aae9d72a12ae8af93ba35d00a3817e3105dcce Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 21 May 2026 17:51:23 +0900 Subject: internal/rosa/package: migrate llvm patches LLVM itself is unlikely to ever be migrated due to complexity of the bootstrap, so migrate patches instead. Signed-off-by: Ophestra --- .../package/llvm/increase-stack-size-unconditional.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 internal/rosa/package/llvm/increase-stack-size-unconditional.patch (limited to 'internal/rosa/package/llvm/increase-stack-size-unconditional.patch') diff --git a/internal/rosa/package/llvm/increase-stack-size-unconditional.patch b/internal/rosa/package/llvm/increase-stack-size-unconditional.patch new file mode 100644 index 00000000..20ffe579 --- /dev/null +++ b/internal/rosa/package/llvm/increase-stack-size-unconditional.patch @@ -0,0 +1,13 @@ +diff --git a/llvm/lib/Support/Threading.cpp b/llvm/lib/Support/Threading.cpp +index 9da357a7ebb9..b2931510c1ae 100644 +--- a/llvm/lib/Support/Threading.cpp ++++ b/llvm/lib/Support/Threading.cpp +@@ -80,7 +80,7 @@ unsigned llvm::ThreadPoolStrategy::compute_thread_count() const { + // keyword. + #include "llvm/Support/thread.h" + +-#if defined(__APPLE__) ++#if defined(__APPLE__) || 1 + // Darwin's default stack size for threads except the main one is only 512KB, + // which is not enough for some/many normal LLVM compilations. This implements + // the same interface as std::thread but requests the same stack size as the -- cgit v1.3.1