From d92f02e2e563d52865f36217ae7f4efa71f75442 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sun, 26 Jan 2025 14:26:56 +0200 Subject: [PATCH] [CMAKE] Build host tools as Debug by default This is to fix kmtests on Test WHS. Seemingly something is broken with release builds of host tools, at least on GCC x86. --- sdk/cmake/host-tools.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/cmake/host-tools.cmake b/sdk/cmake/host-tools.cmake index e2349b8841d..4114256096d 100644 --- a/sdk/cmake/host-tools.cmake +++ b/sdk/cmake/host-tools.cmake @@ -92,7 +92,7 @@ function(setup_host_tools) endif() if(NOT DEFINED HOST_BUILD_TYPE) - set(HOST_BUILD_TYPE Release) + set(HOST_BUILD_TYPE Debug) endif() ExternalProject_Add(host-tools