Files
projectm/docs/llvm.rst
2024-02-09 16:37:09 -06:00

22 lines
405 B
ReStructuredText
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Building with LLVM JIT
~~~~~~~~~~~~~~~~~~~~~~
Install the LLVM libraries. Ive used llvm-7 so far, see
http://apt.llvm.org/ for LLVM repositories.
::
sudo apt-get install llvm-7-dev llvm-7-tools
Then run these commands to configure
::
./autogen.sh && ./configure --enable-sdl --enable-qt --enable-llvm --prefix=$PWD/local
And a clean build of course.
::
make clean && make -j4 install