commit | 49d9269b34f6c20ab7e1ba7e60cec4c1f3194701 | [log] [tgz] |
---|---|---|
author | William A. Kennington III <wak@google.com> | Tue Jun 06 14:02:01 2023 -0700 |
committer | William A. Kennington III <wak@google.com> | Tue Jun 06 14:11:55 2023 -0700 |
tree | fdd190ea30a98dc87f37a35c88504fc08c65311c | |
parent | 1cad7d7ffd9c6c3c811296d99583529122872364 [diff] |
treewide: Add NOLINT where needed to make clang-tidy happy These are not real bugs, clang-tidy doesn't understand how we are preventing UB. Change-Id: I4305ab0b59aae07151d5978ba8642bece076139f Signed-off-by: William A. Kennington III <wak@google.com>
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