fix(src-tauri): add config for build macos

This commit is contained in:
alsan 2025-06-17 08:20:06 +08:00
parent 1c6e8856be
commit 9b0070da92
No known key found for this signature in database
GPG Key ID: 8F00C55263886D92

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",
]