[llvm] workflows/release-binaries: Fix macos-14 build (PR #127157)
Tom Stellard via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 13 18:22:37 PST 2025
https://github.com/tstellar created https://github.com/llvm/llvm-project/pull/127157
This was broken when pgo was enabled by
0572580dd040a81dc69b798e202550d51d17204a.
>From 174c84b14b95cda17c3bd8f438e828a0ae38c844 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Thu, 13 Feb 2025 18:20:47 -0800
Subject: [PATCH] workflows/release-binaries: Fix macos-14 build
This was broken when pgo was enabled by
0572580dd040a81dc69b798e202550d51d17204a.
---
.github/workflows/release-binaries.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 204ee6405382f..398734c1a366d 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -133,13 +133,13 @@ jobs:
# add extra CMake args to disable them.
# See https://github.com/llvm/llvm-project/issues/99767
if [ "$RUNNER_OS" = "macOS" ]; then
- target_cmake_flags="$target_cmake_flags -DBOOTSTRAP_COMPILER_RT_ENABLE_IOS=OFF"
+ target_cmake_flags="$target_cmake_flags -DBOOTSTRAP_BOOTSTRAP_COMPILER_RT_ENABLE_IOS=OFF"
if [ "$RUNNER_ARCH" = "ARM64" ]; then
arches=arm64
else
arches=x86_64
fi
- target_cmake_flags="$target_cmake_flags -DBOOTSTRAP_DARWIN_osx_ARCHS=$arches -DBOOTSTRAP_DARWIN_osx_BUILTIN_ARCHS=$arches"
+ target_cmake_flags="$target_cmake_flags -DBOOTSTRAP_BOOTSTRAP_DARWIN_osx_ARCHS=$arches -DBOOTSTRAP_BOOTSTRAP_DARWIN_osx_BUILTIN_ARCHS=$arches"
fi
build_flang="true"
More information about the llvm-commits
mailing list