New comment by Anachron on void-packages repository https://github.com/void-linux/void-packages/pull/9087#issuecomment-510785395 Comment: Thanks for the new commits, I'm building it right now and will test it on my raspberry pi 3 B+. Edit: Cross Compiling errors out currently on my machine: https://gist.github.com/Anachron/7f9d136ec0ab5c40ae35f40257089e3e#file-samba-log-L75 Found the issue, one needs to copy the answers file to aarch64: `cp armv7l.answers aarch64.answers`. It's missing some deps `ldb` and `tevent` for ARM. Even when one builds those himself (building `ldb` is enough as `tevent` is a dep) it still has some `shlib` issue: ``` [rpi@rpi3] ~ 8! » sudo xbps-install --repository=samba4 samba4 samba4-4.9.4_1: broken, unresolvable shlib `libnetapi.so.0' Transaction aborted due to unresolved shlibs. ``` ``` [rpi@rpi3] ~ » sudo xbps-install --repository=samba4 libsamba4 2>&1 | head -n 5 libsamba4-4.9.4_1: broken, unresolvable shlib `libCHARSET3-samba4.so' libsamba4-4.9.4_1: broken, unresolvable shlib `libHDB-SAMBA4-samba4.so' libsamba4-4.9.4_1: broken, unresolvable shlib `libMESSAGING-SEND-samba4.so' libsamba4-4.9.4_1: broken, unresolvable shlib `libMESSAGING-samba4.so' libsamba4-4.9.4_1: broken, unresolvable shlib `libaddns-samba4.so' ... ```