[core] update to c++20 #7299
No reviewers
Labels
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
3 participants
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#7299
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "to-cpp20"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Seems to be all that's needed to upgrade.
Using g++13 because it's the first version with support for std::format (and close to full support for c++20 generally afaik) https://stackoverflow.com/a/69156536
building android & desktop works
Important limitations on different iOS and XCode versions for some C++17 and above features support
https://developer.apple.com/xcode/cpp/
Let's give a respect to our fav language :) Write with capital C++20 here and below.
Is this comment from some future PR?
yes 😅 i guess it could be added in that PR, but i thought it was just easier to add it now
fixed :)
I'm putting it on hold until the crash is fixed and the PR is tested.
What is the minimum gcc version that will work with our code on this branch?
Can compiler be updated independently from switching the code to C++20?
Did anyone test std::format already on iOS 12 and Android 5 devices?
I'd say there's no reason to update GCC in this PR and Clang 15 is still too old anyways.
✅ Pixel 6 - Android 14
gcc 14
andclang 18
are now inmaster
. @RedAuburn please consider a rebase@Ferenc- this is an incorrect statement )
gcc 14 and clang 18 are enabled on Github CI
is the correct one.this is correct, right?
No, please check this table, and it would be great to also test on different GCC versions. Highly likely that gcc-10 or 11 would be ok. You can experiment locally in this PR by adding other gcc version matrix values in the .github workflow check.
@ -14,2 +14,2 @@
- We are using all features of C++17 except the filesystem which is not fully supported on all platforms.
- We try to limit the usage of boost libraries which require linking (and prefer C++17 types over their boost counterparts).
- We are using all features of C++17 and C++20 except std::filesystem, std::to_chars & std::from_chars which are not fully supported on all platforms.
- We try to limit the usage of boost libraries which require linking (and prefer C++20 types over their boost counterparts).
Unfortunately, the filesystem remark is still relevant.
organicmaps/organicmaps#8256 (comment)
@ -14,2 +14,2 @@
- We are using all features of C++17 except the filesystem which is not fully supported on all platforms.
- We try to limit the usage of boost libraries which require linking (and prefer C++17 types over their boost counterparts).
- We are using all features of C++17 and C++20 except std::filesystem, std::to_chars & std::from_chars which are not fully supported on all platforms.
- We try to limit the usage of boost libraries which require linking (and prefer C++20 types over their boost counterparts).
Damnit apple, will update
checked, gcc-9 fails but gcc-10 works, have updated PR 👍️
@ -14,2 +14,2 @@
- We are using all features of C++17 except the filesystem which is not fully supported on all platforms.
- We try to limit the usage of boost libraries which require linking (and prefer C++17 types over their boost counterparts).
- We are using all features of C++17 and C++20 except std::filesystem, std::to_chars & std::from_chars which are not fully supported on all platforms.
- We try to limit the usage of boost libraries which require linking (and prefer C++20 types over their boost counterparts).
Elementary string conversions std::to_chars, std::from_chars is also not available.
@ -14,2 +14,2 @@
- We are using all features of C++17 except the filesystem which is not fully supported on all platforms.
- We try to limit the usage of boost libraries which require linking (and prefer C++17 types over their boost counterparts).
- We are using all features of C++17 and C++20 except std::filesystem, std::to_chars & std::from_chars which are not fully supported on all platforms.
- We try to limit the usage of boost libraries which require linking (and prefer C++20 types over their boost counterparts).
noted, thanks
Thanks, LGTM. Let's test it before the merge in alpha/beta.
CC @vng @rtsisyk
removed
How do we expect to maintain this minimum
10.0
, if we don't even test in the CI with10.0
?Next PR going in after this, can add something, which suddenly needs
14.0
and nobody even notices, because that still passes the CI.Suggestion: remove this check altogether.
This check will save us and other contributors time debugging build issues when older compilers are used.
We can switch from clang-18 to gcc-10 in the Linux check
Linux no unity build
job.You can express your usage requirements in CMake using target_compile_features together with things from CMAKE_CXX_KNOWN_FEATURES.
That way you don't need to check anything - CMake will do it for you.
What exactly do you propose to add?
I don't propose to add anything, I just don't think this check solves any real problem.
Waste of time is a real problem, especially at scale.
Unfurtunately
CMAKE_CXX_KNOWN_FEATURES
, doesn't have individual feature support for C++20, and even if it had I don't think it could really subsitute actually testing, and currently we only test something that we could call "upper bound" compilers.I propose to either split or change the linux-matrix, so it tests lower bound and upper bound compilers, not just the upper bound as it is currently.
In any case line 169
# GCC 8.1 is required
should be changed in this PR.Let's finish and merge this PR, looks like it has passed alpha testing. There is one report about strange crashes on Android, it is not clear yet if it is related to this or other changes.
Is GCC version mentioned somewhere in the Linux build docs? Should we mention it explicitly there too?
Yes, but IMHO that can also go into a separate PR.
Ok, let's upgrade our core, and learn new patterns! Thanks to everyone involved, let C++20 be in OM!