Search code examples
scons

What is the file .sconsign.dblite for?


What would happen if I delete it?

Should I put it under version control?


Solution

  • The .sconsign.dblite file is a temporary database used by SCons to keep file signatures to speed up future builds. If you delete it, SCons will recreate it (and your next build might take slightly longer because of that). It should not be put under version control.