Package Details: compiler-rt15 15.0.7-1

Git Clone URL: https://aur.archlinux.org/compiler-rt15.git (read-only, click to copy)
Package Base: compiler-rt15
Description: Compiler runtime libraries for clang 15
Upstream URL: https://compiler-rt.llvm.org/
Licenses: custom:Apache 2.0 with LLVM Exception
Submitter: foutrelis
Maintainer: greyltc
Last Packager: greyltc
Votes: 12
Popularity: 1.98
First Submitted: 2024-03-09 10:51 (UTC)
Last Updated: 2024-09-12 09:50 (UTC)

Latest Comments

AndrewRadev commented on 2024-07-06 18:14 (UTC)

The cmake error with load_llvm_config seems to be fixable by adding the line -DLLVM_CONFIG_PATH=/usr/bin/llvm-config-15 to the cmake_args list in the build step:

build() {
  cd compiler-rt-$pkgver.src/build

  local cmake_args=(
    -G Ninja
    -DLLVM_CONFIG_PATH=/usr/bin/llvm-config-15
    -DCMAKE_BUILD_TYPE=Release
    -DCMAKE_INSTALL_PREFIX=/usr/lib/llvm15
    -DCMAKE_SKIP_RPATH=ON
    -DCOMPILER_RT_INSTALL_PATH=/usr/lib/llvm15/lib/clang/$pkgver
  )
  cmake .. "${cmake_args[@]}"
  ninja
}

fboerman commented on 2024-06-23 15:25 (UTC)

I get the same error :( package doesnt work and I need this for postgresql14

LukeLabrie commented on 2024-05-04 13:51 (UTC)

I am getting this error:

CMake Error at cmake/Modules/CompilerRTUtils.cmake:300 (message):
  llvm-config failed with status 1
Call Stack (most recent call first):
  CMakeLists.txt:71 (load_llvm_config)