From 35c02c801218288cec8a39d7fbfd772a603442db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Mon, 5 Apr 2021 18:30:57 +0200 Subject: [PATCH] Disable spvremapper from glslang by default, we don't use it. May partially help #14351 --- ext/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/CMakeLists.txt b/ext/CMakeLists.txt index 16b4adbd7e..440f3c362c 100644 --- a/ext/CMakeLists.txt +++ b/ext/CMakeLists.txt @@ -7,6 +7,7 @@ endif() set(ENABLE_GLSLANG_BINARIES OFF CACHE BOOL "let's not build binaries we don't need" FORCE) set(SPIRV_CROSS_EXCEPTIONS_TO_ASSERTIONS ON CACHE BOOL "let's not use exceptions" FORCE) +set(ENABLE_SPVREMAPPER OFF CACHE BOOL "we don't need spvremapper" FORCE) # This is really a workaround for an NDK 20 compiler issue (PPSSPP issue #12105), but shouldn't hurt. if(ANDROID)