Winetricks / winetricks

Winetricks is an easy way to work around problems in Wine
GNU Lesser General Public License v2.1
2.67k stars 391 forks source link

Setup DXVK fails #1321

Closed ghost closed 4 years ago

ghost commented 4 years ago
$ winetricks dxvk
Using winetricks 20190912-next - sha256sum: a7069d71d208ff76a718671f3c1e919ff3fcdb3fb3c4d78d047f4b85d79780a1 with wine-4.0-rc1 and WINEARCH=win32
Executing w_do_call dxvk
Executing load_dxvk 
------------------------------------------------------
parameter (4) unsupported dll override: dxgi d3d10 d3d11 ; supported dll overrides: dxgi d3d9 d3d10 d3d11
------------------------------------------------------
Kreyren commented 4 years ago

Referencing: https://github.com/Winetricks/winetricks/pull/1318#issuecomment-531580683

@Alexander88207 can you try to remove $HOME/.cache/winetricks/dxvk* and try to reproduce the issue?

ghost commented 4 years ago

Still the same and the download is not damaged.

bobwya commented 4 years ago

@Alexander88207

Probably just a POSIX (non-GNU) sed issue...

What's the output from:

sed --version
echo "dxgi d3d10 d3d11" | sed -E 's/dxgi\|d3d9\|d3d10\|d3d11//g'

ta

ghost commented 4 years ago
sed --version
sed: illegal option -- -
usage: sed script [-Ealnru] [-i extension] [file ...]
    sed [-Ealnu] [-i extension] [-e script] ... [-f script_file] ... [file ...]
$ echo "dxgi d3d10 d3d11" | sed -E 's/dxgi\|d3d9\|d3d10\|d3d11//g'
dxgi d3d10 d3d11
ghost commented 4 years ago

Can confirm this works, thanks!