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.
http://bugs.winehq.org/show_bug.cgi?id=58303
--- Comment #1 from Alex Rønne Petersen alex@alexrp.com --- Oops, sorry, I forgot to mention, I of course did:
git checkout wine-10.8
http://bugs.winehq.org/show_bug.cgi?id=58303
Alex Rønne Petersen alex@alexrp.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Distribution|--- |Ubuntu Hardware|x86-64 |arm
http://bugs.winehq.org/show_bug.cgi?id=58303
Ken Sharp imwellcushtymelike@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download, source
--- Comment #2 from Ken Sharp imwellcushtymelike@gmail.com --- Please attach your configure.log
http://bugs.winehq.org/show_bug.cgi?id=58303
--- Comment #3 from Ken Sharp imwellcushtymelike@gmail.com --- Make that config.log, oops.
http://bugs.winehq.org/show_bug.cgi?id=58303
Alexandre Julliard julliard@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |DUPLICATE
--- Comment #4 from Alexandre Julliard julliard@winehq.org --- Duplicate.
*** This bug has been marked as a duplicate of bug 58269 ***
http://bugs.winehq.org/show_bug.cgi?id=58303
--- Comment #5 from Alex Rønne Petersen alex@alexrp.com --- I can confirm that with 9cf835d3fecd8cf4faf54d18a45cb6d24767efdc cherry-picked, `make install` succeeds in both `build32` and `build64`. Thanks!