No longer builds after scons -c #330
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Running
scons -cinside the git checkout directory where build worked before somehow leads to this:Removing .sconsign.dblite seems to fix it.
I'm able to reproduce this.
Here's what I dug up about .sconsign.dblite:
(from https://stackoverflow.com/a/12867804)
So, SConstruct is marking that file for deletion, and it's getting recreated after
scons -cis called.Weirdly,
scons -cstill creates this bug, even after I tried changing SConstruct to not mark the dblite file for deletion.The conversation here indicates that you're not supposed to delete .sconsign.dblite from your SConstruct file, but
scons -cbreaks the next build even if we don't do that, so it seems like we do need to delete it. I tried the weirdatexitworkaround shown in that issue, and then it worked.