We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--tree
$ scons --tree=all compile_commands.json scons: Reading SConscript files ... scons: done reading SConscript files. scons: Building targets ... Building compilation database compile_commands.json +-compile_commands.json +-[<SCons.Node.FS.File object at 0x3ddc6a50>] +-[<SCons.Node.FS.File object at 0x3ddc8680>] scons: done building targets.
should rather be this:
$ scons --tree=all compile_commands.json scons: Reading SConscript files ... scons: done reading SConscript files. scons: Building targets ... Building compilation database compile_commands.json +-compile_commands.json +-main.cpp +-another.cpp scons: done building targets.
Seems like __CompilationDbNode is missing a __str__() method, or its base class is not the right one.
__CompilationDbNode
__str__()
edit:
I believe that the SCons-generated compile_commands.json should show no dependencies but the SCons{script,truct} file, if at all.
compile_commands.json
The text was updated successfully, but these errors were encountered:
I think normally, Value (Python) nodes don't get included in the tree?
Sorry, something went wrong.
No branches or pull requests
4.4.0 and 4.8.1
should rather be this:
Seems like
__CompilationDbNode
is missing a__str__()
method, or its base class is not the right one.edit:
I believe that the SCons-generated
compile_commands.json
should show no dependencies but the SCons{script,truct} file, if at all.The text was updated successfully, but these errors were encountered: