-
Notifications
You must be signed in to change notification settings - Fork 0
feat: force C++17 build for aarch64 #61
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
Conversation
WalkthroughThe changes in this pull request modify the CMake configuration for the OpenSpaceToolkitSimulation project. The update alters the logic for enabling C++ standard support by introducing an additional condition that checks for the "aarch64" processor architecture. If either the Changes
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
Actionable comments posted: 0
🧹 Outside diff range and nitpick comments (1)
CMakeLists.txt (1)
Line range hint
138-160
: Approved: C++17 enforced for aarch64, but consider long-term implicationsThe change successfully enforces C++17 for aarch64 processors while maintaining C++20 for other architectures, aligning with the PR objective. However, this introduces an architecture-dependent C++ standard selection, which may lead to subtle differences in behavior across platforms.
Recommendations:
- Document this architecture-specific behavior in the project documentation.
- Consider if this is a temporary solution or if there's a plan to standardize the C++ version across all architectures in the future.
- Ensure thorough testing on both aarch64 and other architectures to catch any potential issues arising from the different C++ standards.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #61 +/- ##
=======================================
Coverage 51.84% 51.84%
=======================================
Files 8 8
Lines 461 461
=======================================
Hits 239 239
Misses 222 222 ☔ View full report in Codecov by Sentry. |
This PR forces aarch64 build to C++17
Summary by CodeRabbit
New Features
Bug Fixes