mirror of
https://github.com/blender/blender
synced 2026-09-26 16:15:47 +03:00
macOS: Raise minimum required version to macOS 11.2
This was already the minimum requirement for Intel and Apple Silicon GPUs. It is required for the Metal backend to work correctly. Previously the minimum for AMD GPUs was 10.15. Pull Request: https://projects.blender.org/blender/blender/pulls/118287
This commit is contained in:
parent
5ba104ac46
commit
17ca22ae9f
2 changed files with 4 additions and 8 deletions
|
|
@ -152,13 +152,9 @@ endif()
|
|||
unset(OSX_SDKROOT)
|
||||
|
||||
|
||||
if("${CMAKE_OSX_ARCHITECTURES}" STREQUAL "arm64")
|
||||
# M1 chips run Big Sur onwards.
|
||||
set(OSX_MIN_DEPLOYMENT_TARGET 11.00)
|
||||
else()
|
||||
# 10.15 is our min. target, if you use higher sdk, weak linking happens
|
||||
set(OSX_MIN_DEPLOYMENT_TARGET 10.15)
|
||||
endif()
|
||||
# This is our minimum target, if you use higher sdk, weak linking happens
|
||||
# Mainly required because of Metal drivers.
|
||||
set(OSX_MIN_DEPLOYMENT_TARGET 11.2)
|
||||
|
||||
set(CMAKE_OSX_DEPLOYMENT_TARGET "${OSX_MIN_DEPLOYMENT_TARGET}" CACHE STRING "" FORCE)
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>10.13</string>
|
||||
<string>11.2</string>
|
||||
<key>CFBundleDocumentTypes</key>
|
||||
<array>
|
||||
<dict>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue