New comment by tibequadorian on void-packages repository https://github.com/void-linux/void-packages/pull/23485#issuecomment-663875848 Comment: what about tcc instead of qemu? 😄 ```sh if [ "$CROSS_BUILD" ]; then hostmakedepends+=" tcc" post_patch() { cpp -dM src/fatsort.c | grep '#define INFO' > man/info.h cat > man/fatsort.sh <<-EOF #!/bin/sh case \$1 in "--help") arg="INFO_OPTION_HELP" ;; "--version") arg="INFO_OPTION_VERSION" ;; esac echo "#include\"info.h\"int main(){printf(\$arg);}" | tcc -run - EOF chmod 755 man/fatsort.sh vsed -i man/Makefile -e 's|../src/fatsort|./fatsort.sh|' } fi ```