From 5d95cbde37c749183ae5de97008bee99cb7f40a5 Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Mon, 30 Oct 2023 20:43:22 +0100
Subject: [PATCH] cmake: reset check state before testing -fobjc-arc
---
CMakeLists.txt | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c9cd8b35592e..3bfd22464056 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2973,8 +2973,10 @@ if(ANDROID)
endif()
if(APPLE)
- check_c_compiler_flag(-fobjc-arc COMPILER_SUPPORTS_-fobjc-arc)
- if(NOT COMPILER_SUPPORTS_-fobjc-arc)
+ cmake_push_check_state(RESET)
+ check_c_compiler_flag(-fobjc-arc COMPILER_SUPPORTS_FOBJC_ARC)
+ cmake_pop_check_state()
+ if(NOT COMPILER_SUPPORTS_FOBJC_ARC)
message(FATAL_ERROR "Compiler does not support -fobjc-arc: this is required on Apple platforms")
endif()
sdl_compile_options(PRIVATE "-fobjc-arc")