From d6fa05020ceb9f4b2bfecff1dfbf8bcb1b973049 Mon Sep 17 00:00:00 2001 From: jcm <6864788+jcm93@users.noreply.github.com> Date: Sat, 23 Nov 2024 22:03:14 -0600 Subject: [PATCH] suppress info- and debug-level logging in moltenVK --- deps.macos/moltenvk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.macos/moltenvk b/deps.macos/moltenvk index a81386b..6e9eb6b 100644 --- a/deps.macos/moltenvk +++ b/deps.macos/moltenvk @@ -23,7 +23,7 @@ moltenvk_patch() { moltenvk_build() { cd MoltenVK ./fetchDependencies --macos - xcodebuild build -quiet -project MoltenVKPackaging.xcodeproj -scheme "MoltenVK Package (macOS only)" -configuration ${config} GCC_GENERATE_DEBUGGING_SYMBOLS=TRUE DEBUG_INFORMATION_FORMAT="dwarf-with-dsym" + xcodebuild build -quiet -project MoltenVKPackaging.xcodeproj -scheme "MoltenVK Package (macOS only)" -configuration ${config} GCC_GENERATE_DEBUGGING_SYMBOLS=TRUE DEBUG_INFORMATION_FORMAT="dwarf-with-dsym" GCC_PREPROCESSOR_DEFINITIONS='$GCC_PREPROCESSOR_DEFINITIONS MVK_LOG_LEVEL_INFO=0 MVK_LOG_LEVEL_DEBUG=0' cd .. }