commit | 5e3b13f0224afb09bae9f32e7ab4464d34afcb1f | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Sat Aug 28 14:43:46 2021 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Sat Aug 28 14:45:16 2021 -0500 |
tree | c2d4e98acf579dd3d1b54f775064c879875ed441 | |
parent | 80562599669df54434939299da7444313a1748b3 [diff] |
exception: added guards around builtin redefinition clang fails to compile with this repository when the builtin's for source locations are redefined. Detect their presence with the appropriate builtin-check and avoid redefinition when they are unnecessary. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Ie7905b10f0ca187586ffce95597979a719793348
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