# phosphor-host-ipmid **Repository Path**: obmc/phosphor-host-ipmid ## Basic Information - **Project Name**: phosphor-host-ipmid - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-18 - **Last Updated**: 2024-09-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### Compile ipmid with default options: ```ascii meson builddir ninja -C builddir ``` ### Compile ipmid with yocto defaults: ```ascii 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`. ### Enable/Disable meson wrap feature ```ascii meson builddir -Dwrap_mode=nofallback ninja -C builddir ``` ### Enable debug traces ```ascii meson builddir -Dbuildtype=debug ninja -C builddir ``` ### Generate test coverage report: ```ascii meson builddir -Db_coverage=true -Dtests=enabled ninja -C builddir test ninja -C builddir coverage ```