commit | d8e0af50b1ace047186156bc56e8ff998344c1de | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Fri Aug 16 15:21:12 2024 -0400 |
committer | Patrick Williams <patrick@stwcx.xyz> | Mon Aug 19 15:44:47 2024 -0400 |
tree | e927e94bd63ff380bf1ab8cd6fbd831ccf423d6b | |
parent | ea1dc9348636e5d84331cc4e6a2eaa3d55680afc [diff] |
clang-format: re-format for clang-18 clang-format-18 isn't compatible with the clang-format-17 output, so we need to reformat the code with the latest version. The way clang-18 handles lambda formatting also changed, so we have made changes to the organization default style format to better handle lambda formatting. See I5e08687e696dd240402a2780158664b7113def0e for updated style. See Iea0776aaa7edd483fa395e23de25ebf5a6288f71 for clang-18 enablement. Change-Id: I4635e7b93b66ada3ab5390a21cf465919059fbc1 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