Package Details: llvm-libs-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: runtime libraries for llvm-git
Upstream URL: https://llvm.org/
Keywords: clang git lld lldb llvm polly
Licenses: custom:Apache 2.0 with LLVM Exception
Conflicts: llvm-libs
Provides: aur-llvm-libs-git, llvm-libs
Submitter: yurikoles
Maintainer: rjahanbakhshi
Last Packager: rjahanbakhshi
Votes: 118
Popularity: 0.90
First Submitted: 2018-12-05 13:56 (UTC)
Last Updated: 2024-04-17 08:17 (UTC)

Required by (103)

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 2 3 4 5 6 7 .. 70 Next › Last »

rjahanbakhshi commented on 2023-10-30 08:10 (UTC)

Hi @npour,

Thank you for reporting this. The dependency is added now.

npour commented on 2023-10-27 18:14 (UTC)

Missing dependency:

python-myst-parser

alex.henrie commented on 2023-06-23 06:20 (UTC)

Unless you have something like a terabyte of RAM, this package can only be built with the --nocheck option.

rjahanbakhshi commented on 2023-06-18 12:43 (UTC)

@Lone_Wolf, @onelumin,

Fixed. Thanks,

Lone_Wolf commented on 2023-06-17 19:22 (UTC)

Confirmed

onelumin commented on 2023-05-26 02:45 (UTC)

The package is broken as of last week. Commit 2980029 removed /llvm/bindings/python.

the

cp -a llvm/bindings/python/llvm  "$pkgdir"/usr/lib/python$_py/site-packages/

line must be removed.

Lone_Wolf commented on 2023-05-18 15:18 (UTC) (edited on 2023-05-18 15:19 (UTC) by Lone_Wolf)

Please add

-D LLVM_ENABLE_DUMP=ON

to the cmake command as rusticl needs llvm build with that option .

rjahanbakhshi commented on 2023-05-05 09:33 (UTC) (edited on 2023-05-05 09:54 (UTC) by rjahanbakhshi)

@Lone_Wolf,

Thanks. Do we need bindings here? I see it's turned off in the [Extra] and your llvm-minimal. If not, I'll turn it off.

Edit: Never mind the above. I'll be updating the version number as there are no Python binding providers for llvm-git.

Lone_Wolf commented on 2023-05-05 09:26 (UTC)

It's in package_llvm-git()

    _py="3.10"
    cd llvm-project
    # Install Python bindings and optimize them
    cp -a llvm/bindings/python/llvm  "$pkgdir"/usr/lib/python$_py/site-packages/
    cp -a clang/bindings/python/clang  "$pkgdir"/usr/lib/python$_py/site-packages/
    _python_optimize "$pkgdir"/usr/lib/python$_py/site-packages

rjahanbakhshi commented on 2023-05-05 06:27 (UTC)

@AtticFinder65536,

Can you point out where in the PKGBUILD python version is hard-coded? Thanks,