diff options
author | fanquake <fanquake@gmail.com> | 2021-06-28 15:54:08 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-09-16 17:50:19 +0800 |
commit | a43b8e955558483d8893996cc3a67bc74cbaf358 (patch) | |
tree | b4768aadd7be49e05e884fd9bfb5a0c04061c8fe /contrib/guix/guix-codesign | |
parent | 87780dfee8c82ea09b84e74d331db2ad6f9e75ab (diff) |
build: set OSX_MIN_VERSION to 10.15
This is required to use std::filesystem on macOS as support for it only
landed in the libc++ dylib shipped with 10.15.
See also: https://developer.apple.com/documentation/xcode-release-notes/xcode-11-release-notes
Clang now supports the C++17 <filesystem> library for iOS 13, macOS 10.15, watchOS 6, and tvOS 13.
Diffstat (limited to 'contrib/guix/guix-codesign')
-rwxr-xr-x | contrib/guix/guix-codesign | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/guix/guix-codesign b/contrib/guix/guix-codesign index 3f464f89e6..aff897037d 100755 --- a/contrib/guix/guix-codesign +++ b/contrib/guix/guix-codesign @@ -91,7 +91,7 @@ fi ################ # Default to building for all supported HOSTs (overridable by environment) -export HOSTS="${HOSTS:-x86_64-w64-mingw32 x86_64-apple-darwin18}" +export HOSTS="${HOSTS:-x86_64-w64-mingw32 x86_64-apple-darwin19}" # Usage: distsrc_for_host HOST # |