pete@sifnos:~/development/libs/jsoncpp$ python scons.py platform=linux-gcc check
scons: Reading SConscript files ...
Using platform 'linux-gcc-4.1.2'
LD_LIBRARY_PATH = :libs/linux-gcc-4.1.2
Building using PLATFORM = linux-gcc-4.1.2
scons: *** AttributeError `'NoneType' object has no attribute 'dir'' trying to evaluate `${SOURCE.dir}'
File "scons-tools/doxygen.py", line 186, in generate
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm getting this error:
pete@sifnos:~/development/libs/jsoncpp$ python scons.py platform=linux-gcc check
scons: Reading SConscript files ...
Using platform 'linux-gcc-4.1.2'
LD_LIBRARY_PATH = :libs/linux-gcc-4.1.2
Building using PLATFORM = linux-gcc-4.1.2
scons: *** AttributeError `'NoneType' object has no attribute 'dir'' trying to evaluate `${SOURCE.dir}'
File "scons-tools/doxygen.py", line 186, in generate
I simply commented out line 94 in SConstruct:
# env.Tool('doxygen')
This is a great forum where we all answer our own questions :)
Pete
Atleast you help people who browses through the forum.
I had a build error on Linux when I switched from 32-bit to 64-bit. The error was when I declared new Json values as null:
Json::Value path = NULL;
Removing the NULL solved the problem though.
Christian