On 22 February 2016 at 19:17, Andreas Metzler <[email protected]> wrote: > installing mingw-w64 adds the following links to /usr/lib/ccache: > i686-w64-mingw32-gcc-5.3-posix > i686-w64-mingw32-gcc-5.3-win32 > x86_64-w64-mingw32-gcc-5.3-posix > x86_64-w64-mingw32-gcc-5.3-win32 > > However with "./configure --host i686-w64-mingw32" the Makefiles will > invoke i686-w64-mingw32-gcc, which is not cached.
The problem is that i686-w64-mingw32-gcc 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 symlinks. Essentially the same bug as #632779. -- Joel

