mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-21 14:55:43 +00:00
0b5db172bd
- fix: Radio from context menu passed artist name as ID to getSimilarSongs2 (closes #29) - fix: CI Windows NSIS upload — tauri-action no longer searches missing bundle/msi/ - fix: Linux/AUR ring linker error — use cc instead of rust-lld via .cargo/config.toml Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
7 lines
308 B
TOML
7 lines
308 B
TOML
# Use the system GCC linker for Linux targets instead of rust-lld.
|
|
# ring (pulled in by tauri-plugin-updater) contains C/assembly objects that
|
|
# lld cannot resolve on Arch/CachyOS — switching to cc avoids the
|
|
# "undefined symbol: ring_core_*" linker errors.
|
|
[target.x86_64-unknown-linux-gnu]
|
|
linker = "cc"
|