New comment by Johnnynator on void-packages repository https://github.com/void-linux/void-packages/pull/45745#issuecomment-1738642547 Comment: Musl should be an easy fix. I did not runtime test it yet. ``` if [ "$XBPS_TARGET_LIBC" = "musl" ]; then makedepends+=" libexecinfo-devel" configure_args="-DCMAKE_CXX_STANDARD_LIBRARIES=-lexecinfo" fi ``` `musl.patch` ``` --- a/TheForceEngine/TFE_FileSystem/fileutil-posix.cpp 2023-09-28 06:00:17.000000000 +0200 +++ - 2023-09-28 09:33:09.076014188 +0200 @@ -2,6 +2,7 @@ #include #include #include +#include #include #include #include ```