Ahh cool. I had been using the PlayOnLinux binaries mainly as instructed by novaspirit's tutorial. Using the standard ppa as you've pointed out provides version 4.15 from winehq-devel.dqs105 wrote: ↑Mon Sep 02, 2019 6:32 amI just followed the directions on https://wiki.winehq.org/Debian , which is the official site of wine.
Oh I neglected to mention that I compiled qemu static from source and am using 4.0.95 (v4.1.0-rc5-dirty). I wasn't sure that mattered but apparently it does. I just uploaded myBTW, has anyone tried to build qemu 4.1.0 on Pi? Maybe upgrading qemu will solve this.
Cross-compiled in an x86_64 laptop's Buster container so it takes a couple minutes rather than hours. Procedure was roughly as follows:
Code: Select all
git clone git://git.qemu-project.org/qemu.git
cd qemu
sudo dpkg --add-architecture armhf
sudo apt-get update
sudo apt-get install -y g++-arm-linux-gnueabihf flex bison libglib2.0-dev:armhf # and possibly other lib*-dev:armhf deps
./configure --cross-prefix=arm-linux-gnueabihf- --prefix=$(pwd)/usr --static --target-list="i386-linux-user x86_64-linux-user " --enable-linux-user --disable-system
make && make install
cd usr/bin
for f in *; do mv $f $f-static; done
cd -