New issue by Anachron on void-packages repository https://github.com/void-linux/void-packages/issues/34988 Description: I'm currently testing a `i686` repo on `r32` with the following. `wine` needs an ugly wrapper so far: ``` #!/bin/sh export WINEDLLPATH="/lib/wine/i386-unix" sudo -E chroot /r32 "/usr/libexec/wine/wine" "${@}" ``` `/usr/libexec/wine/wine` needs to be symlinked to this script in order for `/bin/wine` (see https://github.com/void-linux/void-packages/blob/master/srcpkgs/wine/files/wine) to find it. I've put `/usr/bin/chroot /r32` inside my `sudoers` file to not need to type any password for chroots on this path. The tool `bottles` can now find and launch wine on `32bit`: ``` $ bottles 2022-01-11 09:13:38 INFO: Dxvk found: [dxvk-1.9.2] 2022-01-11 09:13:38 INFO: Vkd3d found: [vkd3d-proton-2.5] 2022-01-11 09:13:38 INFO: Nvapi found: [dxvk-nvapi-v0.5.1] 2022-01-11 09:13:38 INFO: Runners found: [sys-wine-7.0-rc5 |caffe-6.23] 2022-01-11 09:13:41 INFO: Bottles gestartet! ``` This is a WIP.