Skip to content

Commit

Permalink
"""
Browse files Browse the repository at this point in the history
To get C++17 support, Xcode 9.3+ is needed, requiring
at least macOS 10.13 on the build machine. To use C++17
library features and link against the C++ runtime library,
set MACOSX_DEPLOYMENT_TARGET to "10.13" or "10.14"
(or higher) - macOS 10.13 offers partial C++17 support
(e.g., the filesystem header is in experimental,
offering #include <experimental/filesystem> instead
of #include <filesystem>); macOS 10.14 has full C++17
support.
"""
  • Loading branch information
0vercl0k committed Jun 27, 2024
1 parent e7d5186 commit 2077e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ skip = "cp27-* cp35-* cp36-* cp37-* pp* *musllinux*"
test-skip = ""

[tool.cibuildwheel.macos.environment]
MACOSX_DEPLOYMENT_TARGET = "10.13"
MACOSX_DEPLOYMENT_TARGET = "10.14"

0 comments on commit 2077e0b

Please sign in to comment.