commit | 90629cc4fe5004c98d085d639db521c45f169c7b | [log] [tgz] |
---|---|---|
author | Lei YU <yulei.sh@bytedance.com> | Thu Feb 06 06:04:33 2025 +0000 |
committer | Lei YU <yulei.sh@bytedance.com> | Thu Feb 06 06:13:19 2025 +0000 |
tree | f351717d6a8b6fe775e2e97e0724f99a4dd44b3b | |
parent | 57a48b218f234412662c72141323c1552478e75c [diff] |
clang-tidy: Add bugprone-unchecked-optional-access Starting from meson 1.4.0[1], `-D_GLIBCXX_ASSERTIONS=1` is set if `ndebug` is disabled. This unveals a bug in the OpenBMC code, that it uses the std::optional value without checking if it's empty. It is undefined behavior, and without `-D_GLIBCXX_ASSERTIONS=1`, the code runs OK to access the "default" value; And it gets assertion and crash if `-D_GLIBCXX_ASSERTIONS=1` is set. It is possible to use clang-tidy's `bugprone-unchecked-optional-access` option to detect such issue in the build time. [1]: https://mesonbuild.com/Release-notes-for-1-4-0.html#ndebug-setting-now-controls-c-stdlib-assertions Signed-off-by: Lei YU <yulei.sh@bytedance.com> Change-Id: I32f64b02b9593a6af6c26af66c386689717336dd
The OpenBMC project is a Linux Foundation project whose goal is to produce a customizable, open-source firmware stack for Baseboard Management Controllers (BMCs). This repository contains documentation for OpenBMC as a whole. There may be component-specific documentation in the repository for each component.
The features document lists the project's major features with links to more information.
These documents contain details on developing OpenBMC code itself
cheatsheet.md: Quick reference for some common development tasks
CONTRIBUTING.md: Guidelines for contributing to OpenBMC
development tutorials: Tutorials for getting up to speed on OpenBMC development
kernel-development.md: Reference for common kernel development tasks
These documents describe how to use OpenBMC, including using the programmatic interfaces to an OpenBMC system.
code-update: Updating OpenBMC and host platform firmware
console.md: Using the host console
host-management.md: Performing host management tasks with OpenBMC
rest-api.md: Introduction to using the OpenBMC REST API
REDFISH-cheatsheet.md: Quick reference for some common OpenBMC Redfish commands
REST-cheatsheet.md: Quick reference for some common OpenBMC REST API commands