7 lines
341 B
TOML
7 lines
341 B
TOML
|
|
[target.x86_64-pc-windows-gnu]
|
||
|
|
# Prevent MinGW ld from auto-exporting all ~106k public symbols into the DLL
|
||
|
|
# export table, which would exceed the 65535 ordinal limit and cause a link
|
||
|
|
# error. The desktop binary links against rlib (static), so cdylib exports
|
||
|
|
# are unused at runtime.
|
||
|
|
rustflags = ["-C", "link-arg=-Wl,--exclude-all-symbols"]
|