commit | 5186b5fb1abaaed6696e077fb5fd7e0a07ed707d | [log] [tgz] |
---|---|---|
author | Peter Foley <pefoley@google.com> | Tue Oct 31 17:03:09 2023 -0400 |
committer | Peter Foley <pefoley@google.com> | Mon Nov 06 15:41:07 2023 +0000 |
tree | 55a122d8529519663329d01a2577022b8a02f7fd | |
parent | 6679ebdb8bd38139d006a14ac782841f276ebf96 [diff] |
include: Improve libc++ compat Avoid ambiguous name lookup errors when building with libc++ Change-Id: I032a75777950659471c64bf294b555049131da8d Signed-off-by: Peter Foley <pefoley@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