[fix]: PyO3 macOS linking and consolidate on tracing for logging

This commit is contained in:
Simo Lin
2025-04-29 11:26:38 -07:00
committed by GitHub
parent 1468769bde
commit 771669cbe0
6 changed files with 55 additions and 77 deletions

View File

@@ -0,0 +1,15 @@
[build]
rustflags = [
]
[target.aarch64-apple-darwin]
rustflags = [
"-C", "link-arg=-undefined",
"-C", "link-arg=dynamic_lookup",
]
[target.x86_64-apple-darwin]
rustflags = [
"-C", "link-arg=-undefined",
"-C", "link-arg=dynamic_lookup",
]