Make minimal OSX version consistent between build-native.sh and configurecompiler...
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Thu, 27 Aug 2020 18:38:25 +0000 (20:38 +0200)
committerGitHub <noreply@github.com>
Thu, 27 Aug 2020 18:38:25 +0000 (20:38 +0200)
The latter still specified 10.12 but .NET Core 3+ actually only supports macOS 10.13 or later.

eng/native/configurecompiler.cmake

index 006a180..d2cb169 100644 (file)
@@ -367,7 +367,7 @@ if (CLR_CMAKE_HOST_UNIX)
 
   # Specify the minimum supported version of macOS
   if(CLR_CMAKE_HOST_OSX)
-    set(MACOS_VERSION_MIN_FLAGS -mmacosx-version-min=10.12)
+    set(MACOS_VERSION_MIN_FLAGS -mmacosx-version-min=10.13)
     add_compile_options(${MACOS_VERSION_MIN_FLAGS})
     add_linker_flag(${MACOS_VERSION_MIN_FLAGS})
   endif(CLR_CMAKE_HOST_OSX)