9 lines
327 B
TOML
9 lines
327 B
TOML
# Configuration for NAPI-RS native module builds
|
|
# Allows undefined symbols that are provided by Node.js at runtime
|
|
|
|
[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"]
|