From 216abdec278490150f175c8a5dc075c61b11a3d6 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Tue, 5 Nov 2019 12:24:48 +0200 Subject: [PATCH] a few clarifications in readme --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 244ed125..4c885a89 100644 --- a/readme.md +++ b/readme.md @@ -9,12 +9,11 @@ export CXXFLAGS="-I/usr/local/include -mmacosx-version-min=10.9 -isysroot MacOSX export CPPFLAGS="-I/usr/local/include -mmacosx-version-min=10.9 -isysroot MacOSX10.9.sdk" export LDFLAGS="-L/usr/local/lib -mmacosx-version-min=10.9 -isysroot MacOSX10.9.sdk" ``` -OS X 10.9 SDK was obtained from Xcode 6.4 which is the last version with Mavericks support. +macOS 10.9 SDK was obtained from Xcode 6.4 which is the last version shipped with Mavericks SDK. The exception is MoltenVK as it must be build as a dynamic library and requires 10.11 or newer. In addition to CMake, it needs Python 3.x to build its dependencies. ```sh -# Assumes CMake and Python 3 are accessible export CFLAGS="-I/usr/local/include -mmacosx-version-min=10.11 -isysroot MacOSX10.11.sdk" export CXXFLAGS="-I/usr/local/include -mmacosx-version-min=10.11 -isysroot MacOSX10.11.sdk" export CPPFLAGS="-I/usr/local/include -mmacosx-version-min=10.11 -isysroot MacOSX10.11.sdk" @@ -25,6 +24,7 @@ git clone https://github.com/KhronosGroup/MoltenVK.git cd MoltenVK git checkout v1.0.38 # See https://github.com/KhronosGroup/MoltenVK/tags -./fetchDependencies -v +./fetchDependencies -v # Assumes CMake and Python 3 are accessible xcodebuild -project MoltenVK/MoltenVK.xcodeproj -scheme MoltenVK-macOS ``` +macOS 10.11 SDK was obtained from Xcode 7.3.1 which is the last version shipped with El Capitan SDK.