From 98fa0b98e5181682d94892a714cede580a828291 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toni=20F=C3=B6rster?= Date: Thu, 5 Sep 2024 17:23:32 +0200 Subject: [PATCH] use -O1 on macOS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On macOS optimisation level -O3 seems to be a bit aggressive and can cause crashes when opening MPV. - fixes #783 Signed-off-by: Toni Förster --- Yattee.xcodeproj/project.pbxproj | 1 + 1 file changed, 1 insertion(+) diff --git a/Yattee.xcodeproj/project.pbxproj b/Yattee.xcodeproj/project.pbxproj index 98579882..f0e5e217 100644 --- a/Yattee.xcodeproj/project.pbxproj +++ b/Yattee.xcodeproj/project.pbxproj @@ -4499,6 +4499,7 @@ ENABLE_HARDENED_RUNTIME = YES; ENABLE_PREVIEWS = YES; ENABLE_USER_SELECTED_FILES = readonly; + GCC_OPTIMIZATION_LEVEL = 1; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_FILE = macOS/Info.plist; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.video";