commit | 5e026b8cba16153d8deb037cf7cdba63dc8336a4 | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Wed May 28 17:15:03 2025 -0400 |
committer | Patrick Williams <patrick@stwcx.xyz> | Wed May 28 17:15:03 2025 -0400 |
tree | 4285bb22d8c4c19a90fcb9897cf2b493fd108257 | |
parent | be32aee33cdef4d99d664d5e13cfb91677097224 [diff] |
clang-format: update latest spec and reformat with clang-20 Copy the latest format file from the docs repository and apply using clang-format-20. See I1818407fdd8ab2ca11a939ffebd5f3e5445403c3 for clang-20 enablement. Change-Id: I4d3d7fc69bd5ab306e9020694c611e6d2c2b6be5 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