Skip to content

Latest commit

 

History

History
87 lines (64 loc) · 2.8 KB

osx-gcc.md

File metadata and controls

87 lines (64 loc) · 2.8 KB

Install Homebrew

Homebrew is a package manager fox OS X. We assume that you're using homebrew to install packages.

ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"

Install Packages

gcc-5/automake/autoconf/libtool/git/cmake

brew update
brew install gcc automake autoconf libtool git cmake pkg-config

Note: Please make sure that you have gcc-5 in your machine after following the above instructions. It is possible that you have installed a previous version of gcc such as gcc-4.8 and homebrew doesn't upgrade it to the latest version gcc-5, yet. If that is the case, please do brew remove gcc && brew install gcc to force the upgrade and check you have gcc-5 on your machine.

Build dReal

git clone https://github.com/dreal/dreal3.git dreal
cd dreal
mkdir -p build/release
cd build/release
cmake -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_CXX_COMPILER=g++-5 -DCMAKE_C_COMPILER=gcc-5 ../../src
make

Test Your Build

Please test your build by running our regression testcases:

ctest

dReach(BMC) and other tools

We have dReach(Bounded Model Checker) and other tools written in Ocaml. To compile them, you need to have OCaml and libraries in your system. Here are the recommended instructions for Ubuntu and OS X.

ocaml/opam

brew install ocaml opam
opam init
eval `opam config env`
opam update
opam install ocamlfind batteries oasis

Once you set up everything, run make at dreal/tools. It will compile all the tools.

dreal/tools $ make

Known Issue

Undefined symbols for architecture x86_64:
  "isalnum(int)", referenced from:
      rp_isident(int)  in librealpaver.a(rp_lexer.c.o)
  "isalpha(int)", referenced from:
      _rp_lexer_get_token in librealpaver.a(rp_lexer.c.o)
  "iscntrl(int)", referenced from:
      _rp_lexer_get_token in librealpaver.a(rp_lexer.c.o)
      _rp_stream_eat_space in librealpaver.a(rp_stream.c.o)
  "isdigit(int)", referenced from:
      _rp_lexer_get_number in librealpaver.a(rp_lexer.c.o)
  "isspace(int)", referenced from:
      _rp_stream_eat_space in librealpaver.a(rp_stream.c.o)
  "tolower(int)", referenced from:
      rp_lexer_text_to_lower(char*) in librealpaver.a(rp_lexer.c.o)
  "toupper(int)", referenced from:
      rp_string_equal_case(char const*, char const*) in librealpaver.a(rp_lexer.c.o)
      _rp_lexer_get_number in librealpaver.a(rp_lexer.c.o)
ld: symbol(s) not found for architecture x86_64

If you have the above error, it is due to a problem in OS X 10.9 + g++. Please read http://stackoverflow.com/a/19706989/2654527 to fix the problem.