aboutsummaryrefslogtreecommitdiffstats
path: root/doc/building/llvm/Windows-MinGW-GNAT.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/building/llvm/Windows-MinGW-GNAT.rst')
-rw-r--r--doc/building/llvm/Windows-MinGW-GNAT.rst26
1 files changed, 0 insertions, 26 deletions
diff --git a/doc/building/llvm/Windows-MinGW-GNAT.rst b/doc/building/llvm/Windows-MinGW-GNAT.rst
deleted file mode 100644
index 59d70023f..000000000
--- a/doc/building/llvm/Windows-MinGW-GNAT.rst
+++ /dev/null
@@ -1,26 +0,0 @@
-.. _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