Hacky and absolute unsupported way to run 32-bit programs under wine-devel on 15: Use the binaries from FreeBSD 14.

1. Install compat14x-amd64.
2. Use the following pkg32.sh script instead of the one installed by wine-devel.

```
#!/bin/sh -e

if [ "$(id -u)" = 0 ]; then
echo "Don't run this script as root!"
exit 1
fi

I386_ROOT="${WINE_i386_ROOT:-$HOME/.i386-wine-pkg}"
ABI="FreeBSD:14:i386"
OSVERSION="1403000"

if [ ! -d "$I386_ROOT/usr/share/keys/pkg" ]; then
mkdir -p "$I386_ROOT/usr/share/keys"
ln -s /usr/share/keys/pkg "$I386_ROOT/usr/share/keys/pkg"
fi

# Show what we're going to do, then do it.
echo pkg -o ABI=$ABI -o OSVERSION=$OSVERSION -o INSTALL_AS_USER=true -o RUN_SCRIPTS=false --rootdir "$I386_ROOT" "$@"
exec pkg -o ABI=$ABI -o OSVERSION=$OSVERSION -o INSTALL_AS_USER=true -o RUN_SCRIPTS=false --rootdir "$I386_ROOT" "$@"
```

0

If you have a fediverse account, you can quote this note from your own instance. Search https://mastodon.bsd.cafe/users/blabber/statuses/115679512459860933 on your instance and quote it. (Note that quoting is not supported in Mastodon.)