ossinfo:
Code: Select all
Version info: OSS 4.2 (b 2021/202112231941) (0x00040100) OSS_HG
Platform: Linux/x86_64 5.15.0-2mx-amd64 #1 SMP Debian 5.15.5-1~mx19+1 (2021-11-29)
dmesg:
Code: Select all
[ 13.363559] osscore: This processor architecture is not compatible with vmix (info=0) - Not enabled.
So apparently it's the floating point support check function failing in vmix_core.c:
Code: Select all
void
vmix_core_init (oss_device_t *osdev)
{
#ifdef CONFIG_OSS_VMIX_FLOAT
int check;
/*
* Check that the processor is compatible with vmix (has proper FP support).
*/
if ((check = oss_fp_check ()) <= 0)
{
vmix_disabled = 1;
cmn_err (CE_WARN,
"This processor architecture is not compatible with vmix (info=%d) - Not enabled.\n",
check);
return;
}
#endif
}
[EDIT]: Never mind.
Until this gets patched, using --config-vmix=FIXEDPOINT when running configure works fairly well.