aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-05-06 16:39:37 +0200
committerSven Gothel <[email protected]>2023-05-06 16:39:37 +0200
commit6e7cee4fa9a8af03f28ca26cd89f8357390dfc90 (patch)
tree0d0148437b37fb2136b2a5727e6516edf716c7df
parent1c551bde214064706fce06483ec43b2247c6818b (diff)
cmake/toolchain.clang-x86_32.cmake: MacOS Min Deployment Target 10.7
-rw-r--r--cmake/toolchain.clang-x86_32.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/toolchain.clang-x86_32.cmake b/cmake/toolchain.clang-x86_32.cmake
index d2e0e9ed..21a7008e 100644
--- a/cmake/toolchain.clang-x86_32.cmake
+++ b/cmake/toolchain.clang-x86_32.cmake
@@ -10,8 +10,8 @@ if(NOT APPLE)
endif()
if(APPLE)
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mmacosx-version-min=10.5")
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mmacosx-version-min=10.5")
+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mmacosx-version-min=10.7")
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mmacosx-version-min=10.7")
endif()
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}" CACHE STRING "c flags")