diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-04-18 10:19:46 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-04-18 10:19:46 +0200 |
commit | 12a3c05229a958a4ff3fb8ad782ceb28bab6dca1 (patch) | |
tree | 71e522653df8093c9a1a5cd39b664e1597be1728 /README | |
parent | d18c10d991f5563189f26977c60e5b10a93a93b6 (diff) | |
download | yosys-12a3c05229a958a4ff3fb8ad782ceb28bab6dca1.tar.gz yosys-12a3c05229a958a4ff3fb8ad782ceb28bab6dca1.tar.bz2 yosys-12a3c05229a958a4ff3fb8ad782ceb28bab6dca1.zip |
Updated README
Diffstat (limited to 'README')
-rw-r--r-- | README | 29 |
1 files changed, 11 insertions, 18 deletions
@@ -56,20 +56,15 @@ and TCL for the scripting functionality. The extensive test suite requires Icarus Verilog. For example on Ubuntu Linux 12.04 LTS the following commands will install all prerequisites for building yosys: - $ sudo apt-get install git - $ sudo apt-get install g++ - $ sudo apt-get install clang - $ sudo apt-get install make - $ sudo apt-get install bison - $ sudo apt-get install flex - $ sudo apt-get install libreadline-dev - $ sudo apt-get install tcl8.5-dev - $ sudo apt-get install minisat - $ sudo apt-get install zlib1g-dev - $ sudo apt-get install libqt4-dev - $ sudo apt-get install mercurial - $ sudo apt-get install iverilog - $ sudo apt-get install graphviz + $ yosys_deps="git g++ clang make bison flex libreadline-dev + tcl8.5-dev zlib1g-dev libqt4-dev mercurial + iverilog graphviz" + $ sudo apt-get install $yosys_deps + +There are also pre-compiled packages for Yosys on Ubuntu. Visit the Yosys +download page to learn more about this: + + http://www.clifford.at/yosys/download.html To configure the build system to use a specific set of compiler and build configuration, use one of @@ -82,7 +77,8 @@ For other compilers and build configurations it might be necessary to make some changes to the config section of the Makefile. - $ vi Makefile + $ vi Makefile ..or.. + $ vi Makefile.conf To build Yosys simply type 'make' in this directory. @@ -90,9 +86,6 @@ To build Yosys simply type 'make' in this directory. $ make test $ sudo make install -If you encounter any problems during build, make sure to check the section -"Workarounds for known build problems" at the end of this README file. - Note that this also downloads, builds and installs ABC (using yosys-abc as executeable name). |