mirror of https://github.com/YosysHQ/yosys.git
added description of Makefile include files for build configuration
This commit is contained in:
parent
71de666003
commit
2192873daa
23
README
23
README
|
@ -40,14 +40,25 @@ or the 2-clause BSD license).
|
||||||
Getting Started
|
Getting Started
|
||||||
===============
|
===============
|
||||||
|
|
||||||
To build Yosys simply type 'make' in this directory. You need
|
You need a C++ compiler with C++11 support (up-to-date CLANG or GCC is
|
||||||
a C++ compiler with C++11 support (up-to-date CLANG or GCC is
|
recommended) and some standard tools such as GNU Flex, GNU Bison, and
|
||||||
recommended) and some standard tools such as GNU Flex, GNU Bison,
|
GNU Make. The extensive tests require Icarus Verilog.
|
||||||
and GNU Make. It might be necessary to make some changes to
|
|
||||||
the config section of the Makefile. The extensive tests require
|
To configure the build system to use a specific set of compiler and
|
||||||
Icarus Verilog.
|
build configuration, use one of
|
||||||
|
|
||||||
|
$ make config-clang-debug
|
||||||
|
$ make config-gcc-debug
|
||||||
|
$ make config-release
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
To build Yosys simply type 'make' in this directory.
|
||||||
|
|
||||||
$ make
|
$ make
|
||||||
$ make test
|
$ make test
|
||||||
$ sudo make install
|
$ sudo make install
|
||||||
|
|
Loading…
Reference in New Issue