You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On my personal system, where a lot of programs like pkgconf, ccache and so on are installed outside of EasyBuild, some packages fail to build with the existing EasyConfigs. With assimp, we run into the following issue:
I wonder if we have some global flag to disable ccache, like CCACHE_BASEDIR set to builddir. Hunting down every build tool that might use this stuff feels more tedious
There is CCACHE_DISABLE, but that still requires ccache to be present and working. CMake itself is not aware of ccache and projects might make us of it in different ways as far as I know.
On my personal system, where a lot of programs like pkgconf, ccache and so on are installed outside of EasyBuild, some packages fail to build with the existing EasyConfigs. With assimp, we run into the following issue:
By default assimp builds with
ccache
enabled, see: https://github.com/assimp/assimp/blob/46c26eda5a3e212e086fc96b453ecb68f4b3ae75/CMakeLists.txt#L49This is probably not needed for EasyBuild, and can also introduce issues when
ccache
is found on the system, but is not built by EasyBuild:We should probably disable this via
ASSIMP_BUILD_USE_CCACHE=OFF
, or add a build dependency toccache
.The text was updated successfully, but these errors were encountered: