%general-entities; ]> highway-&highway-version; highway Introduction to highway The highway package contains a C++ library that provides portable SIMD/vector intrinsics. &lfs121_checked; Package Information Download (HTTP): Download MD5 sum: &highway-md5sum; Download size: &highway-size; Estimated disk space required: &highway-buildsize; Estimated build time: &highway-time; highway Dependencies Required Installation of highway Install highway by running the following commands: mkdir build && cd build && cmake -D CMAKE_INSTALL_PREFIX=/usr \ -D CMAKE_BUILD_TYPE=Release \ -D BUILD_TESTING=OFF \ -D BUILD_SHARED_LIBS=ON \ -G Ninja .. && ninja This package does come with a test suite, but it requires gtest, which is not in BLFS. Now, as the &root; user: ninja install Command Explanations -DBUILD_TESTING=OFF: This parameter disables the test suite from being built because gtest is not part of BLFS. Without this parameter, CMake will download this package during the configuration process. If you wish to run the tests, install gtest and then remove this parameter. -DBUILD_SHARED_LIBS=ON: This parameter enables building shared versions of the libraries instead of static versions. Contents Installed Programs Installed Libraries Installed Directories None libhwy.so, libhwy_contrib.so, and libhwy_test.so /usr/include/hwy and /usr/lib/cmake/hwy Short Descriptions libhwy.so contains functions that provide portable SIMD/vector intrinsics libhwy.so libhwy_contrib.so contains several additions to Highway, including a series of dot product, image, math, and sort routines libhwy_contrib.so libhwy_test.so contains test helpers for Highway libhwy_test.so