mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
docs: Clarify install instructions
`config-clang` is the default, and doesn't need to be run first. Previous instructions were ambiguous about that point. Add note on using a different `CXX`.
This commit is contained in:
parent
bc9cccacf2
commit
2832034877
|
@ -110,26 +110,33 @@ Installing all prerequisites for macOS 11 (with Homebrew):
|
||||||
Running the build system
|
Running the build system
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
To configure the build system to use a specific compiler, use one of the
|
From the root `yosys` directory, call the following commands:
|
||||||
following:
|
|
||||||
|
|
||||||
.. code:: console
|
|
||||||
|
|
||||||
make config-clang
|
|
||||||
make config-gcc
|
|
||||||
|
|
||||||
Then, simply run ``make`` in this directory.
|
|
||||||
|
|
||||||
.. code:: console
|
.. code:: console
|
||||||
|
|
||||||
make
|
make
|
||||||
sudo make install
|
sudo make install
|
||||||
|
|
||||||
Note that this also downloads, builds, and installs `ABC`_ (using
|
This will build and then install Yosys, making it available on the command line
|
||||||
|
as `yosys`. Note that this also downloads, builds, and installs `ABC`_ (using
|
||||||
:program:`yosys-abc` as the executable name).
|
:program:`yosys-abc` as the executable name).
|
||||||
|
|
||||||
.. _ABC: https://github.com/berkeley-abc/abc
|
.. _ABC: https://github.com/berkeley-abc/abc
|
||||||
|
|
||||||
|
The default compiler is ``clang``, to change between ``clang`` and ``gcc``, use
|
||||||
|
one of the following:
|
||||||
|
|
||||||
|
.. code:: console
|
||||||
|
|
||||||
|
make config-clang
|
||||||
|
make config-gcc
|
||||||
|
|
||||||
|
To use a compiler different than the default, use:
|
||||||
|
|
||||||
|
.. code:: console
|
||||||
|
|
||||||
|
make CXX="g++-11"
|
||||||
|
|
||||||
.. seealso::
|
.. seealso::
|
||||||
|
|
||||||
Refer to :doc:`/test_suites` for details on testing Yosys once compiled.
|
Refer to :doc:`/test_suites` for details on testing Yosys once compiled.
|
||||||
|
|
Loading…
Reference in a new issue