can you pastebin ./Makefile and ./cppForSwig/Makefile please
Please:
http://pastebin.com/mTAQmT6Q . I can give a ssh access on non-root user or VNC if this can help.
I fix this error by add
PYTHON_INCLUDES=$(shell python2.7-config --includes )
to make file but still i have got:
ImportError: /home/piotrek/Apps/BitcoinArmory/_CppBlockUtils.so: undefined symbol: _ZN6snappy21GetUncompressedLengthEPKcmPm
This isn't an error, it is meant to resolve the python includes path.
Your issue is that LevelDB is built with Snappy support enabled, and you don't have Snappy anywhere in your build paths. What is odd is that Armory isn't set to use Snappy at all, and there's nothing modified in your Makefile so I don't see how LevelDB could have been built with the -DSNAPPY flag. You should make clean in LevelDB's folder and make again.