Package Details: llvm-git 18.0.0_r484887.953ae94149f0-1

Git Clone URL: https://aur.archlinux.org/llvm-git.git (read-only, click to copy)
Package Base: llvm-git
Description: LLVM development version. includes clang and many other tools
Upstream URL: https://llvm.org/
Keywords: clang git lld lldb llvm polly
Licenses: custom:Apache 2.0 with LLVM Exception
Conflicts: clang, compiler-rt, lld, lldb, llvm, polly
Provides: aur-llvm-git, clang, clang-git, compiler-rt, compiler-rt-git, lld, lld-git, lldb, lldb-git, llvm, polly, polly-git
Submitter: yurikoles
Maintainer: rjahanbakhshi
Last Packager: rjahanbakhshi
Votes: 118
Popularity: 0.46
First Submitted: 2018-12-05 13:56 (UTC)
Last Updated: 2024-04-17 08:17 (UTC)

Required by (2077)

Sources (2)

Pinned Comments

Lone_Wolf commented on 2021-08-16 11:26 (UTC)

When you have this package installed applications that are built against repo-llvm/clang WILL fail unless they are rebuild against this package.

This includes QTCreator, kdevelop , mesa, intel-compute-runtime, gnome-builder to name a few.

Lone_Wolf commented on 2020-08-22 12:18 (UTC) (edited on 2021-02-06 12:51 (UTC) by Lone_Wolf)

Archlinux currently has 3 llvm git implementations

  1. This package

    • It aims to provide a full llvm/clang compiler environment for development purposes.
    • Supports cross-compiling , bindings for external stuff (python, ocaml etc) , and some things not in extra-llvm.
    • intended to be used with archlinux core,extra & community repos
    • CONFLICTS with extra llvm/clang packages
    • Currently there's no repo with binary versions
  2. llvm-minimal-git

    • focuses on providing stuff needed for AUR mesa-git. Doesn't support cross-compiling or any bindings for external stuff like ocaml & python.
    • intended to be used with archlinux core,extra & community repos
    • compatible with extra llvm/clang packages
    • no repo with binary versions
  3. packages created & maintained by Lordheavy, an arch developer

    • intended to be used with archlinux testing repos
    • sometimes has problems on systems where testing repos are disabled
    • uses same package structure as llvm/clang in official repos
    • source
    • binary versions in LordHeavys unoffical repo

Lone_Wolf commented on 2019-04-12 20:41 (UTC) (edited on 2019-12-16 22:45 (UTC) by Lone_Wolf)

I've looked good at clang-trunk , llvm-svn, repo llvm/clang packages and think this package is now on route to become a worthy successor to llvm-svn .

  • llvm-libs-git holds the runtime libraries.

    It conflicts with the repo llvm-libs package. This is the only way to make sure the llvm linker from git is used, and that's needed for a full dev environment.

  • llvm-git

    has llvm , clang, compiler-rt, ocaml & python bindings, polly , lld , lldb .


The Package now uses a new environment variable to make ninja behave, NINJAFLAGS. If you want to use it adjust the snippet below to your desired values and add it to makepkg.conf.

Incase you are satisfied with ninja defaults you don't need to do anything.

# Add to makepkg.conf
# limit ninja to 20 jobs
# requires special code in PKGBUILD
# see ninja --help for additonal options
NINJAFLAGS="-j20"

The check() function fails rather often, but I do suggest to build with them. If build fails due to test failure you can add --nocheck to skip the tests.

Latest Comments

« First ‹ Previous 1 .. 56 57 58 59 60 61 62 63 64 65 66 .. 70 Next › Last »

H3g3m0n commented on 2013-10-31 03:26 (UTC)

I think this needs: options=('staticlibs') Things like the address sanitizer depend on .a files that are getting stripped. The non-aur clang package also has that option. But beware it is a 1.1GiB install size with staticlibs.

mtahmed commented on 2013-10-24 06:09 (UTC)

@xdegaye NP :) Fixed and re-up'ed.

xdegaye commented on 2013-10-23 15:02 (UTC)

@mtahmed ^M were added by my editor when editing the codepad, sorry. Another mistake of mine is not using double quotes in pathnames using $pkgdir and $python_dir (as done in the previous lines) , $pkgdir may have components that include spaces.

mtahmed commented on 2013-10-22 16:57 (UTC)

@xdegaye Thanks! Updated the package with your patch and updated the version. For some reason though, the newlines we replaced by ^M in the file I downloaded from codepad. Not sure if it was codepad or your editor that did that.

xdegaye commented on 2013-10-22 16:41 (UTC)

The embedded python interpreter is not correctly built and the lldb 'script' command fails. See http://llvm.org/bugs/show_bug.cgi?id=16183 PKGBUILD at http://codepad.org/Xg4WL2tm fixes this problem (and a minor vim modeline error). After the fix, one can run 'script' and also import lldb from python2 (lldb does not support python3).

el_roux commented on 2013-10-18 21:43 (UTC)

I wasent able to get it running, but setting pythonpath to "/lldb" does make the following code works : $python2 -c 'import lldb' And the following gives familiar error : $python -c 'import lldb' It says the module is not found.... I'll check it out if I got the time! Btw the rest of the package seems to work nicely :)

ytj commented on 2013-10-11 10:27 (UTC)

Consider following the https://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines and change the PKGBUILD please.

cbab commented on 2013-09-26 19:58 (UTC)

@jackd: Probably only changing CFLAGS="-m32" and perhaps using the lib32 versions of the makedepends dependencies.

jackd commented on 2013-09-25 06:27 (UTC)

What would it take to build a 32-bit version of this package on a 64-bit system?

mtahmed commented on 2013-09-22 15:51 (UTC)

@el_roux When you say "The python interpreter does not work out-of-the-box", are you able to get it running some other way? e.g. do you have to set the PYTHONPATH or something?