commit | ea1dc9348636e5d84331cc4e6a2eaa3d55680afc | [log] [tgz] |
---|---|---|
author | George Liu <liuxiwei@ieisystem.com> | Tue Aug 06 13:27:46 2024 +0800 |
committer | George Liu <liuxiwei@ieisystem.com> | Tue Aug 06 13:27:46 2024 +0800 |
tree | b21f65a8238068b78c519440a11e44b9abe12826 | |
parent | 7aa2a42be328438726a2aff665d649444a1a54d4 [diff] |
Fix MD040 warnings The following warnings are generated by using markdownlint analysis: ``` MD040/fenced-code-language Fenced code blocks should have a language specified [Context: "```"] ``` Refer to markdown-lint [1] to fix MD040 [1]: https://github.com/updownpress/markdown-lint/blob/master/rules/040-fenced-code-language.md Signed-off-by: George Liu <liuxiwei@ieisystem.com> Change-Id: I70cd5bc82959df60091985cc75f83558e6fa7b18
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