summaryrefslogtreecommitdiffstats
path: root/rust/.cargo/config.toml
blob: f0ba8af4fd162c8a02fbfa72e0eb61d887a81263 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[build]
rustflags = []

# see https://pyo3.rs/main/building_and_distribution.html#macos
[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",
]