From 339a599f3098f47e2982bba85bc3f0c8f0726898 Mon Sep 17 00:00:00 2001 From: drbh Date: Tue, 3 Sep 2024 18:19:39 -0400 Subject: [PATCH] fix: enable building on arm based oxs --- .cargo/config.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 00000000..9488ed84 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,3 @@ +# enables `cargo build -F python-bindings -v` on arm macs +[target.aarch64-apple-darwin] +rustflags = ["-C", "link-arg=-undefined", "-C", "link-arg=dynamic_lookup"]