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

0.1.0 #2

Merged
merged 1 commit into from
Feb 3, 2024
Merged
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
6 changes: 3 additions & 3 deletions sn-bindgen.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ class SnBindgen < Formula
desc "Scala 3 Native binding generator for C libraries"
homepage "https://sn-bindgen.indoorvivants.com"

_version = "0.0.24"
_version = "0.1.0"

version "#{_version}"

Expand All @@ -12,7 +12,7 @@ class SnBindgen < Formula
depends_on "sbt" => :build
end

depends_on "llvm@14"
depends_on "llvm@17"

resource "binary" do
on_arm do
Expand Down Expand Up @@ -40,7 +40,7 @@ class SnBindgen < Formula
def install
if build.head?
ENV["SCALANATIVE_MODE"] = "release-fast"
ENV["LLVM_BIN"] = Formula["llvm@14"].opt_bin
ENV["LLVM_BIN"] = Formula["llvm@17"].opt_bin

system "sbt", "buildBinary sn-bindgen"

Expand Down
Loading