I don't exactly know what I did, but seems like I broke my build system.
$ scons install
scons: Reading SConscript files ...
File "<string>", line 1
I_���.�K
H�4����Ǐ��U)�f���R�f���ў�U)�f���R�f���ў�
^
SyntaxError: invalid syntax
The unprintable characters are intended.
The bad thing is: Even resetting on a "known as working" version does not help, as well as using the options like --debug=stacktrace. My version control system (mercurial) does not show changes in the SCons files and I don't know how to proceed. Any hints how to make mercurial print the names of the files it's working on to find out what's happening?
My next step would be to make a new clone of the project (which hopefully builds), but I'm curious what's wrong here.
UPDATE
The problem disappeared when I updated to Ubuntu 12.04. "Disappeared" means in this case, that suddenly I've been able to execute the scons --clean command after which I was able to rebuild my project again. Sadly I cannot reproduce the error so that finally I don't know what caused it because it worked for several months and none of my colleagues had such a strange error before.
This is an excerpt of my script:
vars = Variables( "variables.cache" )
vars.Add( "CXX", "use this c++ compiler", "/usr/bin/g++" )
# (other stuff added to vars)
env = Environment( variables = vars ) # <-- this line caused the error
In the trouble fixing this I got the impression that after updating, Python was able to give me a better error message and the message was (trying to remember it) that vars is in some way invalid. So maybe the problem was in variables.cache, I don't know. Maybe I should just have deleted this file (which I did not) to get rid of the error.