-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[c++] Update minimum macOS deployment target #3534
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚢 once CI is ☘️ -- thank you @XanthosXanthopoulos for sticking with this!!! :)
# Set minimum macOS version to enable certain C++20 features | ||
# set(CMAKE_OSX_DEPLOYMENT_TARGET 13.3) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this comment need to be here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would like to enable it eventually (that's why I have it - as a reminder) but I do not know what effect it would have on conda build
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3534 +/- ##
==========================================
+ Coverage 86.25% 86.30% +0.04%
==========================================
Files 55 55
Lines 6359 6359
==========================================
+ Hits 5485 5488 +3
+ Misses 874 871 -3
Flags with carried forward coverage won't be shown. Click here to find out more.
|
For the C++20 migration to work we need to increase the minimum macOS deployment target to 13.3 to have support for floating-point formatter.
#3154
[sc-57301]