commit | 38af2d8b75cf158f61934bb010673185bfca6117 | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Fri May 30 11:04:44 2025 -0400 |
committer | Patrick Williams <patrick@stwcx.xyz> | Fri May 30 23:30:04 2025 +0000 |
tree | 53e77d2a1d0d36d6452c947164c767f74e9d4063 | |
parent | 5e026b8cba16153d8deb037cf7cdba63dc8336a4 [diff] |
clang-tidy: format with config-clang-tidy Reformat the .clang-tidy file for consistency using the config-clang-tidy tool from openbmc-build-scripts. Change-Id: If34717b11c6d322b7821609a4e7fa2d1ce7d2db7 Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
stdplus is a c++ project containing commonly used classes and functions for the Linux platform. Note the goals of this project are to implement only the minimum set of features needed by the OpenBMC project and other users. You may find the included set of functions currently quite sparse.
This project provides the following primitives:
Test cases require google{test,mock}, valgrind, and lcov. It also requires the Meson Build System which can be installed following the instructions at mesonbuild.com.
For a standard release build, you want something like:
meson setup -Dexamples=false -Dtests=disabled builddir ninja -C builddir ninja -C builddir install
For a test / debug build, a typical configuration is
meson setup -Dtests=enabled builddir meson test -C builddir