-
Notifications
You must be signed in to change notification settings - Fork 7
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
⚗️ (stl): Test std::ranges support for arm-gcc + clang #1088
base: develop
Are you sure you want to change the base?
Conversation
File comparision analysis report🔖 Info
Click to show memory sections
📝 SummaryClick to show summary
🗺️ Map files diff outputClick to show diff list
|
File comparision analysis report🔖 Info
Click to show memory sections
📝 SummaryClick to show summary
🗺️ Map files diff outputClick to show diff list
|
Codecov Report
@@ Coverage Diff @@
## develop #1088 +/- ##
===========================================
- Coverage 98.73% 96.00% -2.74%
===========================================
Files 145 138 -7
Lines 3729 3253 -476
===========================================
- Hits 3682 3123 -559
- Misses 47 130 +83
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
0317f41
to
c5dd128
Compare
c5dd128
to
3fad720
Compare
88c6d13
to
7286156
Compare
7286156
to
c18d6c3
Compare
c18d6c3
to
a749c83
Compare
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.
Finally functional after xcode-select --install
Some details and how about CI?
for (auto val: utils::ranges::sequence({.start = 10, .end = 20})) { | ||
log_info("y: %i", val); | ||
} | ||
|
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.
Can add the other sequence
for (auto val: utils::ranges::sequence({.start = 10, .end = 20})) { | |
log_info("y: %i", val); | |
} | |
for (auto val: utils::ranges::sequence({.start = 10, .end = 20})) { | |
log_info("y: %i", val); | |
} | |
for (auto val: utils::ranges::sequence({.from = 101, .size = 10})) { | |
log_info("z: %i", val); | |
} | |
5887324
to
bc65d78
Compare
SonarCloud Quality Gate failed. |
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.
Thank you~
bc65d78
to
8f7e60d
Compare
8f7e60d
to
1a998a0
Compare
1a998a0
to
8fed903
Compare
This comment has been minimized.
This comment has been minimized.
This change requires the user to have brew's llvm/clang v15.x.x installed with: ``` brew install llvm ``` Using brew's llvm/clang allows for the use of C++20's latest features such as std::ranges through the option `-fexperimental-library` It also uses lld for linking wich should be faster.
8fed903
to
0fd6d6c
Compare
🔖 Version comparison
|
Quality Gate failedFailed conditions |
📈 Changes Impact Analysis Report📌 Info
🤖 Firmware impact analysis
Click to show memory sections
🔬 Detailed impact analysisClick to show detailed analysis for all targets
🗺️ Map files diff output
|
📈 Changes Impact Analysis Report📌 Info
🤖 Firmware impact analysis
Click to show memory sections
🔬 Detailed impact analysisClick to show detailed analysis for all targets
🗺️ Map files diff output
|
godbolt test:
https://gcc.godbolt.org/z/PovoE7T8s
need