aboutsummaryrefslogtreecommitdiffstats
path: root/doc/building/llvm/GNULinux-GNAT.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/building/llvm/GNULinux-GNAT.rst')
-rw-r--r--doc/building/llvm/GNULinux-GNAT.rst23
1 files changed, 0 insertions, 23 deletions
diff --git a/doc/building/llvm/GNULinux-GNAT.rst b/doc/building/llvm/GNULinux-GNAT.rst
deleted file mode 100644
index 5bb1fcad7..000000000
--- a/doc/building/llvm/GNULinux-GNAT.rst
+++ /dev/null
@@ -1,23 +0,0 @@
-.. _BUILD:llvm:GNULinux-GNAT:
-
-LLVM Backend on GNU/Linux with GCC/GNAT
-#######################################
-
-.. HINT:: You need to install LLVM (usually depends on ``libedit``, see :ghdlsharp:`29`). Debugging is only supported with LLVM 3.5.
-
-* First configure GHDL with the proper arg ``./configure --with-llvm-config``. If ``llvm-config`` is not in your path, you can specify it: ``./configure --with-llvm-config=LLVM_INSTALL/bin/llvm-config``.
-
-* Then, build with ``make`` and install with ``make install``.
-
-.. rubric:: Example:
-
-.. code-block:: Bash
-
- $ cd <ghdl>
- $ mkdir build
- $ cd build
- $ ../configure --with-llvm-config --prefix=PREFIX
- $ make
- $ make install
-
-.. HINT:: If you want to have stack backtraces on errors (like assert failure or index of out bounds), you need to configure and build ``libbacktrace`` from GCC (you don't need to configure GCC). Then add the following arg to configure: ``--with-backtrace-lib=/path-to-gcc-build/libbacktrace/.libs/libbacktrace.a``