From d90a0743acea830c710eb99a85e0d63a6adaf498 Mon Sep 17 00:00:00 2001 From: don bright Date: Mon, 20 Aug 2018 18:56:37 -0500 Subject: [PATCH] basic target for 12,13,14 this is not a full solution, but it would make life easier for the people trying to hack on this and get it working better. --- build.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 5c0a82c..c61c683 100755 --- a/build.sh +++ b/build.sh @@ -93,7 +93,10 @@ case $SDK_VERSION in 10.9*) TARGET=darwin13; X86_64H_SUPPORTED=1; ;; 10.10*) TARGET=darwin14; X86_64H_SUPPORTED=1; ;; 10.11*) TARGET=darwin15; X86_64H_SUPPORTED=1; ;; - *) echo "Invalid SDK Version" && exit 1 ;; + 10.12*) TARGET=darwin16; X86_64H_SUPPORTED=1; ;; + 10.13*) TARGET=darwin17; X86_64H_SUPPORTED=1; ;; + 10.14*) TARGET=darwin18; X86_64H_SUPPORTED=1; ;; +*) echo "Invalid SDK Version" && exit 1 ;; esac export TARGET