3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-06 14:24:08 +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
wget http://fmv.jku.at/boolector/boolector-2.4.1-with-lingeling-bbc.tar.bz2
tar xvjf boolector-2.4.1-with-lingeling-bbc.tar.bz2
cd boolector-2.4.1-with-lingeling-bbc/
make
sudo cp boolector/bin/boolector /usr/local/bin/boolector
git clone https://github.com/boolector/boolector
git clone https://github.com/arminbiere/lingeling boolector/deps/lingeling
git clone https://github.com/boolector/btor2tools boolector/deps/btor2tools
( cd boolector/deps/lingeling && ./configure.sh -fPIC && make -j$(nproc); )
( 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
--------------------------------