fix: add macos dynamic lookup linker flags for pyo3

This commit is contained in:
2026-06-19 14:28:50 +01:00
parent 3c991f9315
commit 9471ca427a
+11
View File
@@ -0,0 +1,11 @@
[target.x86_64-apple-darwin]
rustflags = [
"-C", "link-arg=-undefined",
"-C", "link-arg=dynamic_lookup",
]
[target.aarch64-apple-darwin]
rustflags = [
"-C", "link-arg=-undefined",
"-C", "link-arg=dynamic_lookup",
]