[llvm] workflows/release-binaries: Disable flang on macOS X64 (PR #101790)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 2 21:38:32 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
Author: Tom Stellard (tstellar)
<details>
<summary>Changes</summary>
Build is failing due to #<!-- -->101789.
---
Full diff: https://github.com/llvm/llvm-project/pull/101790.diff
1 Files Affected:
- (modified) .github/workflows/release-binaries.yml (+2-2)
``````````diff
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index b1b046dbad5f8..5112544f18a04 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -126,10 +126,10 @@ jobs:
# x86 macOS and x86 Windows have trouble building flang, so disable it.
# Windows: https://github.com/llvm/llvm-project/issues/100202
- # macOS: 'rebase opcodes terminated early at offset 1 of 80016' when building __fortran_builtins.mod
+ # macOS: https://github.com/llvm/llvm-project/issues/101789
build_flang="true"
- if [ "$target" = "Windows-X64" ]; then
+ if [ "$target" = "Windows-X64" -o "$target" = "macOS-X64" ]; then
target_cmake_flags="$target_cmake_flags -DLLVM_RELEASE_ENABLE_PROJECTS=\"clang;lld;lldb;clang-tools-extra;bolt;polly;mlir\""
build_flang="false"
fi
``````````
</details>
https://github.com/llvm/llvm-project/pull/101790
More information about the llvm-commits
mailing list