Package Details: dxvk-mingw-git 2.7.1.r195.g2f9309786-1

Git Clone URL: https://aur.archlinux.org/dxvk-git.git (read-only, click to copy)
Package Base: dxvk-git
Description: A Vulkan-based compatibility layer for Direct3D 9/10/11 which allows running 3D applications on Linux using Wine. Windows DLL version)
Upstream URL: https://github.com/doitsujin/dxvk
Keywords: dxvk
Licenses: zlib/libpng
Conflicts: dxvk-bin
Provides: d9vk, dxvk
Submitter: ssorgatem
Maintainer: ssorgatem
Last Packager: ssorgatem
Votes: 22
Popularity: 0.045507
First Submitted: 2018-01-24 19:41 (UTC)
Last Updated: 2025-10-23 23:27 (UTC)

Pinned Comments

niobium93 commented on 2024-07-07 15:22 (UTC)

DXVK upstream just merged d3d8 support, so I updated our setup script. Be sure to re-run it to enjoy DXVK's shiny new d3d8 frontend!

WINEPREFIX="/path/to/your/prefix" setup_dxvk install --symlink

ssorgatem commented on 2018-06-22 06:24 (UTC) (edited on 2019-02-26 15:49 (UTC) by ssorgatem)

This package provides Windows binaries of the DXVK dlls. They work on wine and should work on Windows too. If you don't specifically want Windows binaries and you want to just use DXVK on wine, the winelib package is a better approach and much easier to build (dxvk-winelib-git).

To enable DXVK in a wineprefix, do the following (with the WINEPREFIX variable properly set):

setup_dxvk install

In order to uninstall DXVK from a wineprefix:

setup_dxvk uninstall

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 .. 11 Next › Last »

harre commented on 2022-08-31 21:04 (UTC) (edited on 2022-08-31 21:06 (UTC) by harre)

Started failing build today:

==> Starting build()...
The Meson build system
Version: 0.63.1
Source dir: /home/markus/.cache/yay/dxvk-git/src/dxvk
Build dir: /home/markus/.cache/yay/dxvk-git/src/build/x64
Build type: cross build

dxvk/meson.build:1:0: ERROR: Unknown options: "enable_tests"

A full log can be found at /home/markus/.cache/yay/dxvk-git/src/build/x64/meson-logs/meson-log.txt
==> ERROR: A failure occurred in build().
    Aborting...
 -> error making: dxvk-git (dxvk-mingw-git)

pongo1231 commented on 2022-08-23 22:09 (UTC)

Builds fine now, thanks for the update!

ssorgatem commented on 2022-08-23 20:54 (UTC)

@loathingkernel thank you for your suggestion. Is it working properly now?

loathingkernel commented on 2022-08-23 20:34 (UTC) (edited on 2022-08-23 20:35 (UTC) by loathingkernel)

The way the submodules are cloned is utterly erroneous, in the source array you are not cloning the repository and the only reason it works is because the wrong submodule names are configured in prepare. This way the submodules are still cloned over the internet and not locally in prepare which is what the guidelines suggest against.

The correct way/syntax is the following

source=(
    "git+https://github.com/doitsujin/dxvk.git"
    "git+https://github.com/Joshua-Ashton/mingw-directx-headers.git"
    "git+https://github.com/KhronosGroup/Vulkan-Headers.git"
    "git+https://github.com/KhronosGroup/SPIRV-Headers.git"
)
prepare() {
    cd dxvk

    git submodule init include/{native/directx,vulkan,spirv}
    git config submodule.include/native/directx.url "$srcdir/mingw-directx-headers"
    git config submodule.include/vulkan.url "$srcdir/Vulkan-Headers"
    git config submodule.include/spirv.url "$srcdir/SPIRV-Headers"
    git submodule update include/{native/directx,vulkan,spirv}
}

FabioLolix commented on 2022-08-22 16:02 (UTC)

Git submodules need to be configured https://wiki.archlinux.org/title/VCS_package_guidelines#Git_submodules

arzeth commented on 2022-08-22 14:15 (UTC) (edited on 2022-08-22 14:17 (UTC) by arzeth)

prepare() {
    cd dxvk
    git submodule update --init --recursive
    cd ..
}

(or something like that) must be added.

pongo1231 commented on 2022-08-22 09:39 (UTC)

Doesn't seem to build anymore.

dxvk/meson.build:119:0: ERROR: Include dir ./include/vulkan/include does not exist.

ssorgatem commented on 2021-02-21 07:50 (UTC)

It should alreaby be building the master branch.

In order to change the branch you'd need to change the source URL to point to a specific branch

theriddick commented on 2021-02-21 04:30 (UTC)

Just curious, what would I need to change in the PKGBUILD in order to just build the master branch? there are some critical fixes appearing in master since release of 1.8.