Skip to content

Instantly share code, notes, and snippets.

View muzhig's full-sized avatar
👨‍💻
working

Arseniy Potapov muzhig

👨‍💻
working
View GitHub Profile
class backtrace
{
boost::shared_array<void*> m_backtrace;
size_t m_trace_size;
public:
static const int DEFAULT_STACK_DEPTH = 100;
static const int DEFAULT_EXCLUDE_FIRST_FRAMES_COUNT = 1;
typedef std::vector<std::string> stack_type;
sudo apt-get install build-essential libsqlite3-dev zlib1g-dev libncurses5-dev libgdbm-dev libbz2-dev libreadline5-dev libssl-dev libdb-dev
wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz
tar -xzf Python-2.7.3.tgz
cd Python-2.7.3
./configure --prefix=/usr --enable-shared
make
sudo make install
cd ..