Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.
Link the ALSA the media plane has been calling all along
The desktop libjoltmoq.so had 68 undefined `snd_pcm_*` symbols and no
DT_NEEDED on libasound: cpal's ALSA host is compiled in, and the library
it calls was never named. alsa-sys's build script asks pkg-config for it
and emits `cargo:rustc-link-lib=asound`; buck2 keeps a build script's
cfgs and drops its link directives, so the flags file came out without
it.
The same defect as aws-lc-sys and openh264-sys2, and the same two lines
fix it. What hid this one is that Android never touched it — cpal uses
its AAudio host there, not ALSA — so the release that fixed the phone
shipped a desktop object that could not be dlopened at all. Undefined
symbols are legal in a cdylib, and nothing had loaded one until frq
pinned this release and tried.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>