From 9991c3b0b4f8843be8fbfd3cf975bd379e08d85e Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Sat, 22 Jun 2024 19:37:04 +0300 Subject: [PATCH] =?UTF-8?q?Permanent=20workaround=20for=20an=20SDK/Clang/l?= =?UTF-8?q?d=20bug=20=E2=80=93=20fixes=20compatibility=20with=2010.9=20and?= =?UTF-8?q?=2010.10=20when=20linking=20against=2014.x=20SDKs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 719ebb9e2..582fb9799 100644 --- a/Makefile +++ b/Makefile @@ -492,7 +492,7 @@ endif $(BIN)/SameBoy.app/Contents/MacOS/SameBoy: $(CORE_OBJECTS) $(COCOA_OBJECTS) -@$(MKDIR) -p $(dir $@) - $(CC) $^ -o $@ $(LDFLAGS) $(FAT_FLAGS) -framework OpenGL -framework AudioToolbox -framework AudioUnit -framework AVFoundation -framework CoreVideo -framework CoreMedia -framework IOKit -framework PreferencePanes -framework Carbon -framework QuartzCore -framework Security -framework WebKit -weak_framework Metal -weak_framework MetalKit + $(CC) $^ -o $@ $(LDFLAGS) $(FAT_FLAGS) -framework OpenGL -framework AudioUnit -framework AVFoundation -framework CoreVideo -framework CoreMedia -framework IOKit -framework PreferencePanes -framework Carbon -framework QuartzCore -framework Security -framework WebKit -weak_framework Metal -weak_framework MetalKit ifeq ($(CONF), release) $(STRIP) $@ endif