Mirror of https://github.com/leanprover/lean2 in case it ever disappears
Find a file
Leonardo de Moura 139f4f2a7f Add simple build system based on cmake
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2013-07-16 22:10:51 -07:00
src Add simple build system based on cmake 2013-07-16 22:10:51 -07:00
.gitignore Add basic .gitignore file 2013-07-15 18:45:12 -07:00
LICENSE Add LICENSE file 2013-07-15 18:55:48 -07:00
README Add simple build system based on cmake 2013-07-16 22:10:51 -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 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