Skip to content

Commit

Permalink
build: added cargo config for pyo3 builds on mac.
Browse files Browse the repository at this point in the history
  • Loading branch information
Randy808 authored and cdecker committed Jun 4, 2024
1 parent 3b13604 commit b91efcc
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions libs/gl-client-py/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -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",
]

0 comments on commit b91efcc

Please sign in to comment.