I have a SCons script that I need to debug. Somewhere down inside of everything that is happening, I have a problem and I need to find out where it is going bad.
I'd like to debug the SCons script, but I'm not sure how to get it set up. I have both PyCharm and Komodo IDEs, but I couldn't figure out how to make those work.
I've tried this:
scons --debug=pdb <args...>
but that just gets me inside of SCons; I need to be inside of the scripts that I've created that SCons runs.
Can someone show me how to set up PyCharm or Komodo to debug a SCons script? If that isn't possible, I'm open to other debugging options.