Skip to content

Commit 39482b8

Browse files
committed
Include missing target
1 parent b6ae6c3 commit 39482b8

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ Add baml_elixir to your mix.exs:
238238
```elixir
239239
def deps do
240240
[
241-
{:baml_elixir, "~> 1.0.0-pre.22"}
241+
{:baml_elixir, "~> 1.0.0-pre.23"}
242242
]
243243
end
244244
```
@@ -247,6 +247,7 @@ This also downloads the pre built NIFs for these targets:
247247

248248
- aarch64-apple-darwin (Apple Silicon)
249249
- x86_64-unknown-linux-gnu
250+
- aarch64-unknown-linux-gnu
250251

251252
If you need to build the NIFs for other targets, you need to clone the repo and build it locally as documented below.
252253

lib/baml_elixir/native.ex

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ defmodule BamlElixir.Native do
88
version: version,
99
targets: [
1010
"aarch64-apple-darwin",
11-
"x86_64-unknown-linux-gnu"
11+
"x86_64-unknown-linux-gnu",
12+
"aarch64-unknown-linux-gnu"
1213
]
1314

1415
def call(_function_name, _args, _path, _collectors, _client_registry, _tb),

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule BamlElixir.MixProject do
22
use Mix.Project
33

4-
@version "1.0.0-pre.22"
4+
@version "1.0.0-pre.23"
55

66
def project do
77
[

0 commit comments

Comments
 (0)