mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-07 14:45:18 +00:00
Updated install instructions for super_prove
* Links were dead * No binaries to download * Updated with install information from super_prove github repository * Augmented with additional commands to ease installation
This commit is contained in:
parent
66a458958d
commit
21371fb7ac
|
@ -76,10 +76,26 @@ https://github.com/Z3Prover/z3/wiki
|
||||||
super_prove
|
super_prove
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
https://bitbucket.org/sterin/super_prove_build
|
https://github.com/sterin/super-prove-build
|
||||||
|
|
||||||
Download the right binary .tar.gz for your system from http://downloads.bvsrc.org/super_prove/
|
.. code-block:: text
|
||||||
and extract it to ``/usr/local/super_prove``.
|
|
||||||
|
sudo apt-get install cmake ninja-build g++ python-dev python-setuptools \
|
||||||
|
python-pip git
|
||||||
|
git clone --recursive https://github.com/sterin/super-prove-build
|
||||||
|
cd super-prove-build
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake -DCMAKE_BUILD_TYPE=Release -G Ninja ..
|
||||||
|
ninja
|
||||||
|
ninja package
|
||||||
|
|
||||||
|
This creates a .tar.gz archive for the target system. Extract it to
|
||||||
|
``/usr/local/super_prove``
|
||||||
|
|
||||||
|
.. code-block:: text
|
||||||
|
|
||||||
|
sudo tar -C /usr/local -x super_prove-X-Y-Release.tar.gz
|
||||||
|
|
||||||
Then create a wrapper script ``/usr/local/bin/suprove`` with the following contents:
|
Then create a wrapper script ``/usr/local/bin/suprove`` with the following contents:
|
||||||
|
|
||||||
|
@ -89,6 +105,12 @@ Then create a wrapper script ``/usr/local/bin/suprove`` with the following conte
|
||||||
tool=super_prove; if [ "$1" != "${1#+}" ]; then tool="${1#+}"; shift; fi
|
tool=super_prove; if [ "$1" != "${1#+}" ]; then tool="${1#+}"; shift; fi
|
||||||
exec /usr/local/super_prove/bin/${tool}.sh "$@"
|
exec /usr/local/super_prove/bin/${tool}.sh "$@"
|
||||||
|
|
||||||
|
And make this wrapper script executable:
|
||||||
|
|
||||||
|
.. code-block:: text
|
||||||
|
|
||||||
|
sudo chmod +x /usr/local/bin/suprove
|
||||||
|
|
||||||
Avy
|
Avy
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue