diff options
Diffstat (limited to 'doc/building/mcode/Windows-MinGW-GNAT.rst')
-rw-r--r-- | doc/building/mcode/Windows-MinGW-GNAT.rst | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/building/mcode/Windows-MinGW-GNAT.rst b/doc/building/mcode/Windows-MinGW-GNAT.rst new file mode 100644 index 000000000..874807bcf --- /dev/null +++ b/doc/building/mcode/Windows-MinGW-GNAT.rst @@ -0,0 +1,26 @@ +.. _BUILD:mcode:Windows-MinGW-GNAT: + +GHDL with mcode backend build on Windows with GCC/GNAT (MinGW) +############################################################## + +On Windows with MinGW, GHDL is configured by ``configure`` and build 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`` select `mcode` as 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 |