commit | a3787a3e717e22ab15e17bc0ff24e1f3ccb22c48 | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Fri Jun 23 06:50:49 2023 -0500 |
committer | William A. Kennington III <wak@google.com> | Fri Jun 23 21:36:15 2023 +0000 |
tree | 4c870dbbb4a064512403902b75c2c331994026ff | |
parent | b03c9cb3da399b446b53139f398f7bae84145e57 [diff] |
exception: remove source_location indirect clang-16 now natively supports std::source_location so we do not need the experimental indirection. Clean up the code. Tested: Compiled with `CXX=clang++`. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Iabb10a603e1451228e27948fb0791b9db4791ec7
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