Leonardo de Moura 1448dd5098 Update .gitignore
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2013-07-16 22:34:54 -07:00
2013-07-16 22:34:54 -07:00
2013-07-15 18:55:48 -07:00
2013-07-16 22:32:21 -07:00

Requirements:

- C++11 compatible compiler 
- GMP (GNU multiprecision library)
  http://gmplib.org/
- (optional) gperftools
  https://code.google.com/p/gperftools/
- cmake
  http://www.cmake.org

Instructions for DEBUG build 
  mkdir -p build/debug
  cd build/debug
  cmake -DCMAKE_BUILD_TYPE=DEBUG ../../src        
  make

Instructions for RELEASE build 
  mkdir -p build/release
  cd build/release
  cmake -DCMAKE_BUILD_TYPE=RELEASE ../../src        
  make

Instructions for installing gcc-4.8 (C++11 compatible) on Ubuntu
Execute:
    sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
    sudo update-alternatives --remove-all gcc 
    sudo update-alternatives --remove-all g++ 
    sudo apt-get update
    sudo apt-get install g++-4.8 -y
    sudo apt-get upgrade -y && sudo apt-get dist-upgrade -y

Description
No description provided
Readme 5 GiB
Languages
Lean 94.3%
C++ 4.1%
Python 0.6%
Shell 0.4%
CMake 0.3%