On Sat, 6 Mar 2021 at 22:51, Joachim Wuttke <j.wut...@fz-juelich.de> wrote: > Package ccache installs a number of symbolic links to /usr/lib/ccache, among > them clang-11 and clang++-11, but not clang and clang++. May I kindly suggest > you add these two?
The problem is that /usr/bin/clang is created (via the alternatives mechanism) after ccache's postinst script has run, so ccache currently has no way of detecting that compiler name. A workaround is to run /usr/sbin/update-ccache-symlinks manually to install the symlink. This is essentially the same bug as #632779. Regards, Joel