You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Up until now notify-rust relied solely on dbus-rs (which links to libdbus), so musl wasn't possible.
Luckily we now have an alternative with zbus (a selfcontained pure rust dbus implementation).
So I just tried it out and it seems to work.
try something like this:
cargo run --target x86_64-unknown-linux-musl --no-default-features --features z --example simple
Compiling for the
x86_64-unknown-linux-musl
target succeeds, but invokingshow()
on a notification causes a segfault at runtime.How would I use
notify-rust
onmusl
? Are there any plans to support this?Give it a try with:
PKG_CONFIG_ALLOW_CROSS=1 cargo run --target="x86_64-unknown-linux-musl" --example simple
The text was updated successfully, but these errors were encountered: