http://bugs.winehq.org/show_bug.cgi?id=58303
Bug ID: 58303 Summary: make install for arm-linux-gnueabihf on aarch64-linux-gnu host fails at libaclui.a Product: Wine Version: 10.8 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: alex@alexrp.com Distribution: ---
I did the following:
git clone https://gitlab.winehq.org/wine/wine.git cd wine mkdir build32 build64 cd build64 ../configure --enable-win64 make -j$(nproc) cd ../build32 PKG_CONFIG_PATH=/usr/lib/arm-linux-gnueabihf ../configure --with-wine64=../build64 --host=arm-linux-gnueabihf make -j$(nproc)
That all succeeds. However, when I try to `make install` in `build32`, I eventually get:
../build64/tools/winebuild/winebuild -w --implib -o dlls/aclui/libaclui.a -b arm-linux-gnueabihf --export \ ../dlls/aclui/aclui.spec tmp68634c48/libaclui-00000000.s: Assembler messages: tmp68634c48/libaclui-00000000.s:2: Error: unrecognized symbol type "" tmp68634c48/libaclui-00000000.s:9: Error: junk at end of line, first unrecognized character is `,' winebuild: /usr/bin/arm-linux-gnueabihf-as failed with status 1 make: *** [Makefile:1602: dlls/aclui/libaclui.a] Error 1
Unfortunately, I'm not familiar enough with the build system to know how to get at that temporary file to try to diagnose the problem.
This is on a Ubuntu 25.04 machine, FWIW.