Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

abi #597

Closed
wants to merge 2 commits into from
Closed

abi #597

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions Formula/llvm/libc++abi.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Libcxxabi < Formula

Check warning on line 1 in Formula/llvm/libc++abi.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-13)

`brew linkage --cached --test --strict paperchalice/private/libc++abi` failed on macOS Ventura (13)!

Files with missing rpath: /usr/local/Cellar/libc++abi/18.1.2/lib/libc++abi.1.0.dylib
desc "C++ Standard Library Support"
homepage "https://libcxxabi.llvm.org/"
url "https://github.com/llvm/llvm-project/releases/download/llvmorg-17.0.2/llvm-project-17.0.2.src.tar.xz"
sha256 "351562b14d42fcefcbf00cc1f327680a1062bbbf67a1e1ca6acb64c473b06394"
url "https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.2/llvm-project-18.1.2.src.tar.xz"
sha256 "51073febd91d1f2c3b411d022695744bda322647e76e0b4eb1918229210c48d5"
license "Apache-2.0" => { with: "LLVM-exception" }

bottle do
Expand All @@ -12,9 +12,11 @@

depends_on "cmake" => :build

depends_on "paperchalice/private/libunwind"

def install
cmake_args = std_cmake_args+ %w[
-D LLVM_ENABLE_RUNTIMES=libcxx;libcxxabi
-D LLVM_ENABLE_RUNTIMES=libcxx;libcxxabi;libunwind

-S runtimes
-B build
Expand Down
Loading