commit | 0f68a6ffdb42cd78c8f4641d21a76f015cc1a8d3 | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Wed Jul 12 11:16:08 2023 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Wed Jul 12 21:00:45 2023 +0000 |
tree | 0f5930f5dd9f629f2472e5da893736be412c1e3a | |
parent | ab995c50185c37cf11e8b9fefcbb184bcd516e2d [diff] |
build: upgrade to C++23 Meson 1.1.1 and GCC-13 both support C++23 and a sufficient portion of the standard has been implemented. Upgrade the build to leverage it. Change-Id: Iad4f36b3bc82de17803443beed8469794ea45684 Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
gpioplus is a c++ wrapper around the linux gpio ioctl interface. It aims to provide c++ ergonomics to the usage.
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