3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-15 17:58:44 +00:00

Update boolector build instructions

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2018-12-08 07:34:03 +01:00
parent 3d66e7cec5
commit b8549f3a2d

View file

@ -118,11 +118,13 @@ http://fmv.jku.at/boolector/
.. code-block:: text .. code-block:: text
wget http://fmv.jku.at/boolector/boolector-2.4.1-with-lingeling-bbc.tar.bz2 git clone https://github.com/boolector/boolector
tar xvjf boolector-2.4.1-with-lingeling-bbc.tar.bz2 git clone https://github.com/arminbiere/lingeling boolector/deps/lingeling
cd boolector-2.4.1-with-lingeling-bbc/ git clone https://github.com/boolector/btor2tools boolector/deps/btor2tools
make ( cd boolector/deps/lingeling && ./configure.sh -fPIC && make -j$(nproc); )
sudo cp boolector/bin/boolector /usr/local/bin/boolector ( cd boolector/deps/btor2tools && ./configure.sh -fPIC && make -j$(nproc); )
( cd boolector && ./configure.sh && cd build && make -j$(nproc); )
sudo cp boolector/build/bin/{boolector,btor*} /usr/local/bin/
First step: A simple BMC example First step: A simple BMC example
-------------------------------- --------------------------------