14 Dec
2025
14 Dec
'25
7:12 a.m.
On Sat Dec 13 21:41:52 2025 +0000, servantoftestator wrote:
Yeah I was using non standard build directories. But even manually changing the directory in tools/makeopts.c to the exact location of the link list did not work for me. Also i'm using new WOW64, not old i386 + x86_64 wow. I had to exclude some files used in the i386 build in the x86_64 build because of that. Specifically the ones relating to \_ftol. In that case, you'd copy skiplists to your build directory:
build/tools/lto-skip.* ```sh mkdir -p build/tools for i in tools/lto-skip.* ; do ln -s "$PWD/$i" ./build/tools/ done ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7111#note_125583