From 3754466c64edc04d40f3f6be92a0bd5516bc3d33 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Sun, 26 Aug 2018 16:58:51 -0700 Subject: [PATCH] build_proton: don't bother building dxvk on mac dxvk isn't of any real use on mac until it's able to link to MoltenVK See https://github.com/KhronosGroup/MoltenVK/issues/203 and https://github.com/doitsujin/dxvk/issues/601. Signed-off-by: Christopher Larson --- build_proton.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/build_proton.sh b/build_proton.sh index 4bfc852c6..e05f46e7f 100755 --- a/build_proton.sh +++ b/build_proton.sh @@ -631,9 +631,13 @@ fi build_openal -build_glslang +if [ "$PLATFORM" != "Darwin" ]; then + # dxvk isn't of any real use on mac until it's able to link to MoltenVK + # See https://github.com/KhronosGroup/MoltenVK/issues/203 + build_glslang -build_dxvk + build_dxvk +fi case "$BUILD_COMPONENTS" in "all")