From 8343418c16e9731933e8afd389545a2eccdcb248 Mon Sep 17 00:00:00 2001 From: flywind Date: Fri, 30 Apr 2021 15:52:52 +0800 Subject: [PATCH] increase the support version requirement for MacOS macOS 10.12 was born at June 13, 2016, and the end of support date is October 2019. This version introduces more useful features. For example, `getentropy`, `clock_gettime` which is benefit. However we don't have a reliable way to use different system apis for different system versions. More terribly, it makes it hard to register these apis in the VM because it causes building latest Nim to fail. see https://github.com/nim-lang/Nim/issues/17370 So maybe we should increase the support version requirement for MacOS --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 37babf7118e6..3c6062eed9fb 100644 --- a/readme.md +++ b/readme.md @@ -35,7 +35,7 @@ architecture combinations: * Windows (Windows XP or greater) - x86 and x86_64 * Linux (most, if not all, distributions) - x86, x86_64, ppc64 and armv6l - * Mac OS X (10.04 or greater) - x86, x86_64 and ppc64 + * Mac OS X (10.12 or greater) - x86, x86_64 and ppc64 More platforms are supported, however, they are not tested regularly and they may not be as stable as the above-listed platforms.