Package Details: wine-wow64 9.6-1

Git Clone URL: https://aur.archlinux.org/wine-wow64.git (read-only, click to copy)
Package Base: wine-wow64
Description: A compatibility layer for running Windows programs
Upstream URL: https://www.winehq.org
Keywords: wine winehq wow64 x64
Licenses: LGPL
Conflicts: wine
Provides: wine
Submitter: tiziodcaio
Maintainer: tiziodcaio (xiota)
Last Packager: tiziodcaio
Votes: 32
Popularity: 2.80
First Submitted: 2023-05-06 18:16 (UTC)
Last Updated: 2024-04-05 19:56 (UTC)

Required by (348)

Sources (3)

Pinned Comments

xiota commented on 2024-01-18 02:30 (UTC)

Wayland support requires setting a registry variable. See Wine 9.0 Changelog.

wine reg.exe add HKCU\\Software\\Wine\\Drivers /v Graphics /d x11,wayland

tiziodcaio commented on 2023-09-11 14:58 (UTC)

Added wine-staging-wow64, the wine-wow64 package with staging patches!

Latest Comments

1 2 3 4 5 6 7 Next › Last »

xiota commented on 2024-04-23 06:15 (UTC)

@gdebure Something is changing the build settings on your computer. Could be almost anything. Would be interested to know if you ever find it.

gdebure commented on 2024-04-23 05:27 (UTC) (edited on 2024-04-23 05:28 (UTC) by gdebure)

Indeed, it does build in a clean chroot... I can see a few diffs between the system's makepkg.conf and the chroot one, but not sure they are relevant:

diff /etc/makepkg.conf /var/lib/archbuild/extra-x86_64/root/etc/makepkg.conf

44,46c44,45
<         -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Werror=format-security \
<         -fstack-clash-protection -fcf-protection \
<         -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"
---
>         -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security \
>         -fstack-clash-protection -fcf-protection"
51c50
< RUSTFLAGS="-Cforce-frame-pointers=yes"
---
> RUSTFLAGS=""
86c85
< # Makepkg defaults: OPTIONS=(!strip docs libtool staticlibs emptydirs !zipman !purge !debug !lto !autodeps)
---
> # Makepkg defaults: OPTIONS=(!strip docs libtool staticlibs emptydirs !zipman !purge !debug !lto)
98d96
< #-- autodeps:   Automatically add depends/provides
118,119d115
< #-- Prefix and directories for library autodeps
< LIB_DIRS=('lib:usr/lib' 'lib32:usr/lib32')

gdebure commented on 2024-04-23 04:38 (UTC) (edited on 2024-04-23 04:39 (UTC) by gdebure)

Well, it looks like the original makepkg.conf from pacman 6.1 uses these LDFLAGS:

LDFLAGS="-Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now
         -Wl,-z,pack-relative-relocs"

(source : https://gitlab.archlinux.org/archlinux/packaging/packages/pacman/-/blob/6.1/makepkg.conf?ref_type=heads)

I will try building in a clean chroot.

xiota commented on 2024-04-22 22:29 (UTC) (edited on 2024-04-22 22:30 (UTC) by xiota)

Why is it trying to use lld? Do you have LDFLAGS and other variables set somewhere else? Try building in clean chroot.

gdebure commented on 2024-04-22 19:47 (UTC) (edited on 2024-04-22 19:48 (UTC) by gdebure)

# Make a backup of my makepkg.conf
sudo mv /etc/makepkg.conf /etc/makepkg.conf.back
# Reinstall pacman to recover original makepkg.conf
sudo pacman -S pacman
# Compare files
diff /etc/makepkg.conf /etc/makepkg.conf.back

Results in

< #MAKEFLAGS="-j2"
---
> MAKEFLAGS="-j20"

Relaunched makepkg -is but exactly the same output. What am I doing wrong ?

gdebure commented on 2024-04-22 19:34 (UTC)

@xiota, hmmm this is strange, to my knowledge the only change I made was to uncomment this line to allow parallel compilation:

MAKEFLAGS="-j20"

I will restore the original file from the package and see what happens.

xiota commented on 2024-04-22 04:52 (UTC)

@gdebure The -fuse-ld=lld in your output indicates makepkg.conf has been modified. This package builds successfully in a clean chroot.

gdebure commented on 2024-04-22 04:34 (UTC) (edited on 2024-04-22 04:54 (UTC) by gdebure)

I get the following message when installing on a fresh archlinux install:

...
checking whether the compiler supports -Wl,--export-dynamic... yes
checking whether the compiler supports -static-pie... yes
checking for x86_64-w64-mingw32-gcc... x86_64-w64-mingw32-gcc
checking whether x86_64-w64-mingw32-gcc works... yes
checking whether x86_64-w64-mingw32-gcc supports -target x86_64-w64-mingw32 -fuse-ld=lld  --no-default-config... no
checking whether x86_64-w64-mingw32-gcc supports -target x86_64-w64-mingw32 -fuse-ld=lld ... no
checking for x86_64-w64-mingw32-gcc option to enable C99 features... unsupported
configure: error: x86_64 PE cross-compiler supporting C99 not found.
This is an error since --enable-archs=x86_64 was requested.

It is not clear to me what I should install prior to installing wine-wow64. Should something more be listed as build dependencies ?

Hanabishi commented on 2024-03-16 17:52 (UTC)

@kby, you are doing it wrong, read https://wiki.archlinux.org/title/Makepkg#Improving_build_times

It took me 4m 38s on Ryzen 7700X with all 16 threads utilized and building on tmpfs ramdisk.

kby commented on 2024-03-09 18:28 (UTC) (edited on 2024-03-09 18:30 (UTC) by kby)

Any tips to decrease compilation time? I've tried -j8 for the make call in build(), but that didn't make it any faster. Right now, the entire process takes about an hour for me.