Search Criteria
Package Details: llvm12 12.0-1
Package Actions
| Git Clone URL: | https://aur.archlinux.org/llvm12.git (read-only, click to copy) |
|---|---|
| Package Base: | llvm12 |
| Description: | Collection of modular and reusable compiler and toolchain technologies |
| Upstream URL: | https://llvm.org |
| Keywords: | llvm |
| Licenses: | custom:Apache 2.0 with LLVM Exception |
| Submitter: | cyberfined |
| Maintainer: | None |
| Last Packager: | cyberfined |
| Votes: | 0 |
| Popularity: | 0.000000 |
| First Submitted: | 2022-04-02 13:34 (UTC) |
| Last Updated: | 2022-04-02 13:34 (UTC) |
Dependencies (7)
- cmake (cmake3AUR, cmake-gitAUR) (make)
- git (git-gitAUR, git-glAUR) (make)
- jsoncpp (jsoncpp-cmake-gitAUR, jsoncpp-gitAUR, jsoncpp-cmakeAUR) (make)
- libedit (make)
- libffi (libffi-gitAUR) (make)
- make (make-gitAUR, make-staticAUR) (make)
- python (make)
Latest Comments
TripleCamera commented on 2024-12-01 16:41 (UTC)
@xantares You need to
#include <cstdint>inllvm/src/include/llvm/Support/Signals.h. (Reference)@cyberfined Could you please fix this? Thanks.
xantares commented on 2023-06-09 05:43 (UTC)
it fails to build with gcc 13:
[ 7%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/TargetRegistry.cpp.o In file included from /home/xantares/.cache/yay/llvm12/src/llvm-12.0.0.src/lib/Support/Signals.cpp:14: /home/xantares/.cache/yay/llvm12/src/llvm-12.0.0.src/include/llvm/Support/Signals.h:119:8: error: variable or field 'CleanupOnSignal' declared void 119 | void CleanupOnSignal(uintptr_t Context); | ^~~~~~~~~~~~~~~ /home/xantares/.cache/yay/llvm12/src/llvm-12.0.0.src/include/llvm/Support/Signals.h:119:24: error: 'uintptr_t' was not declared in this scope 119 | void CleanupOnSignal(uintptr_t Context); | ^~~~~~~~~ /home/xantares/.cache/yay/llvm12/src/llvm-12.0.0.src/include/llvm/Support/Signals.h:18:1: note: 'uintptr_t' is defined in header '<cstdint>'; did you forget to '#include <cstdint>'? 17 | #include <string>