From 21a8c232a115745f61ff019755cc1ddb0014491e Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Thu, 3 Dec 2020 14:26:23 +0100 Subject: [PATCH] Note that debug builds on winegcc fail now --- tools/patch-vst3-sdk.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/patch-vst3-sdk.sh b/tools/patch-vst3-sdk.sh index 5e712099..1d5d46e5 100755 --- a/tools/patch-vst3-sdk.sh +++ b/tools/patch-vst3-sdk.sh @@ -19,6 +19,8 @@ if [[ -z $sdk_directory ]]; then exit 1 fi +# TODO: Debug builds fail now because it's using an unimplemented variation of printf + # Make sure all imports use the correct casing find "$sdk_directory" -type f \( -iname '*.h' -or -iname '*.cpp' \) -print0 | xargs -0 sed -i -E 's/^#include <(Windows.h|ShlObj.h)>$/#include <\L\1\E>/'