New comment by lidgnulinux on void-packages repository https://github.com/void-linux/void-packages/issues/46846#issuecomment-1902112582 Comment: Do you use musl or glibc ? On musl I got implicit function `strtof32` and need to replace it with `strtob2` on `src/settings.c`. ``` // float val = strtof32(buf.buf, NULL); float val = strtob2(buf.buf, NULL); ```