commit | c024b39d16e3c23c2b200b01e9aa8b5252498f56 | [log] [tgz] |
---|---|---|
author | George Liu <liuxiwei@ieisystem.com> | Thu Aug 21 16:38:58 2025 +0800 |
committer | George Liu <liuxiwei@ieisystem.com> | Mon Sep 08 01:01:15 2025 +0000 |
tree | 48e88836d4371e6d205f212e5b52672cc930e65a | |
parent | 0ab847959fb6fab8435e0319cc2d6ed150127ef3 [diff] |
Replace boost starts_with/ends_with with std::string C++20 introduces std::string::starts_with and std::string::ends_with, which provide standard, efficient, and header-light ways to check string prefixes and suffixes. Replacing boost::algorithm::starts_with and boost::algorithm::ends_with reduces Boost dependencies, simplifies includes, and improves compilation performance. Change-Id: I611ccb49a174dcd5433c1001cf1750907dd023ac Signed-off-by: George Liu <liuxiwei@ieisystem.com>
meson builddir ninja -C builddir
meson builddir -Dbuildtype=minsize -Db_lto=true -Dtests=disabled ninja -C builddir
If any of the dependencies are not found on the host system during configuration, meson automatically gets them via its wrap dependencies mentioned in ipmid/subprojects
.
meson builddir -Dwrap_mode=nofallback ninja -C builddir
meson builddir -Dbuildtype=debug ninja -C builddir
meson builddir -Db_coverage=true -Dtests=enabled ninja -C builddir test ninja -C builddir coverage