Despite the fact that I executed lake exe cache get
, lake build
keeps on building Mathlib, which takes hours.
This happens because lake build
will keep building mathlib if your mathlib dependency uses a lean version different from yours.
So, to build everything using cache:
Copy your mathlib's Lean version into your project's lean-toolchain
cp .lake/packages/mathlib/lean-toolchain lean-toolchain
OR, if that command fails, then you're on the older version of lake, and should run:
cp lake-packages/mathlib/lean-toolchain lean-toolchain
Clean cache to make sure everything goes fine
rm -rf lake-packages
rm -rf build // Or whatever the location of your build files is, depends on your lake version!
lake exe cache clean!
Get cached built files
lake exe cache get
EXPECTED RUNTIME: for my project that includes mathlib this takes 20 seconds.
Finally, build
lake build
EXPECTED RUNTIME: 0 seconds.