blob: 59d70023f52fd22c8153e493ceeb06a1d84b9dea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
.. _BUILD:llvm:Windows-MinGW-GNAT:
LLVM Backend on Windows with GCC/GNAT (MinGW)
#############################################
On Windows with MinGW, GHDL is configured by ``configure`` and built by ``make``.
* First, GHDL needs to be configured. It is common to specify a ``PREFIX``
(installation directory like ``/usr/local`` or ``/opt/ghdl``). Without any
other option, ``configure`` selects `mcode` as the backend.
* Next, ``make`` starts the compilation process.
* Finally, ``make install`` installs GHDL into the installation directory
specified by ``PREFIX``.
.. rubric:: Example:
.. code-block:: Bash
$ cd <ghdl>
$ mkdir build
$ cd build
$ ../configure --prefix=PREFIX
$ make
$ make install
|