Code: Select all
# Build 64-bit
./configure --enable-win64
make
# Build 32-bit
./configure
make
# Combine
./configure --with-wine64=/path/to/64bit --with-wine-tools=/path/to/32bit
make
Code: Select all
# Build 64-bit
./configure --enable-win64
make
# Combine with 32-bit
./configure --with-wine64=/path/to/64bit
make
Nonetheless, using this new way of doing things my build fails:
Code: Select all
usr/bin/as: tmp683c56f0/kernel32-00000000.o: unsupported relocation type: 0x1
tmp683c56f0/libkernel32-00000000.s: Assembler messages:
tmp683c56f0/libkernel32-00000000.s:7: Error: cannot represent relocation type BFD_RELOC_64
winebuild: /usr/bin/as failed with status 1
make: *** [Makefile:94805: dlls/kernel32/libkernel32.a] Error 1
make: *** Waiting for unfinished jobs....
/usr/bin/as: tmp683c56fd/ntdll-00000000.o: unsupported relocation type: 0x1
tmp683c56fd/libntdll-00000000.s: Assembler messages:
tmp683c56fd/libntdll-00000000.s:7: Error: cannot represent relocation type BFD_RELOC_64
winebuild: /usr/bin/as failed with status 1
make: *** [Makefile:144626: dlls/ntdll/libntdll.a] Error 1