aboutsummaryrefslogtreecommitdiffstats
path: root/doc/building/llvm/index.rst
blob: a2faf9d74549091484f838985c020d1e4d55b702 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.. _BUILD:llvm:

LLVM Backend
############

.. rubric:: Requirements

* GCC (Gnu Compiler Collection)
* GNAT (Ada compiler for GCC)
* LLVM (Low-Level-Virtual Machine)

  * 3.5
  * 3.8

* CLANG (Compiler front-end for LLVM)

  * 3.5
  * 3.8

.. rubric:: Supported platforms

* :ref:`GNU/Linux with GCC <BUILD:mcode:GNULinux-GCC>`
* :ref:`Windows (x86_64) with MinGW32/MinGW64 <BUILD:mcode:Windows-WinGW>`

.. toctree::
   :hidden:

   GNULinux-GNAT
   Windows-WinGW

	 
	 
GNU/Linux
---------

You need to install LLVM (usually depends on :samp:`libedit`, see :ghdlsharp`29`). The supported versions are 3.5 till 3.9, but debugging is only supported with LLVM 3.5.

- First configure GHDL with the proper arg :samp:`./configure --with-llvm-config`. If :samp:`llvm-config` is not in your path, you can specify it: :samp:`./configure --with-llvm-config=LLVM_INSTALL/bin/llvm-config`.

.. HINT:: If you want to have stack backtraces on errors (like assert failure or index of out bounds), you need to configure and build :samp:`libbacktrace` from GCC (you don't need to configure GCC). Then add the following arg to configure: :samp:`--with-backtrace-lib=/path-to-gcc-build/libbacktrace/.libs/libbacktrace.a`

- Then build with :samp:`make` and install with :samp:`make install`.
  
Mac OS?
-------

Windows MinGW 32/64
-------------------