summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6f8554edc1ca8f9d153ab0c936b69d03ec49d6fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# Maintainer: Lone_Wolf <lonewolf@xs4all.nl>
# Contributor: yurikoles <root@yurikoles.com>
# Contributor: bearoso <bearoso@gmail.com>
# Contributor: Luchesar V. ILIEV <luchesar%2eiliev%40gmail%2ecom>
# Contributor: Anders Bergh <anders@archlinuxppc.org>
# Contributor: Armin K. <krejzi at email dot com>
# Contributor: Christian Babeux <christian.babeux@0x80.ca>
# Contributor: Jan "heftig" Steffens <jan.steffens@gmail.com>
# Contributor: Evangelos Foutras <evangelos@foutrelis.com>
# Contributor: Hesiod (https://github.com/hesiod)
# Contributor: Roberto Alsina <ralsina@kde.org>
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: Tomas Lindquist Olsen <tomas@famolsen.dk>
# Contributor: Tomas Wilhelmsson <tomas.wilhelmsson@gmail.com>

pkgname=clang-lw-git
pkgver=9.0.0_r315268.eb14dc7585b
pkgrel=1
pkgdesc="C language family frontend for LLVM"
arch=('x86_64')
url="https://clang.llvm.org/"
license=('custom:University of Illinois/NCSA Open Source License')
depends=('llvm-libs-lw-git' 'gcc' 'compiler-rt-lw-git')
makedepends=('git' 'llvm-lw-git' 'cmake' 'ninja' 'python-sphinx' 'llvm-libs')
optdepends=('openmp: OpenMP support in clang with -fopenmp'
            'python: for scan-view and git-clang-format')
conflicts=('clang-analyzer' 'clang-tools-extra')
source=(llvm-project::git+https://github.com/llvm/llvm-project.git
        enable-SSP-and-PIE-by-default.patch)
sha256sums=('SKIP'
            '58f86da25eb230ed6d423b5b61870cbf3bef88f38103ca676a2c7f34b2372171')

pkgver() {
    cd llvm-project/llvm

    # This will almost match the output of `llvm-config --version` when the
    # LLVM_APPEND_VC_REV cmake flag is turned on. The only difference is
    # dash being replaced with underscore because of Pacman requirements.
    local _pkgver=$(awk -F 'MAJOR |MINOR |PATCH |)' \
            'BEGIN { ORS="." ; i=0 } \
             /set\(LLVM_VERSION_/ { print $2 ; i++ ; if (i==2) ORS="" } \
             END { print "\n" }' \
             CMakeLists.txt)_r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)
    echo "${_pkgver}"
}

prepare() {
  cd llvm-project/clang
  mv "$srcdir"/llvm-project/clang-tools-extra tools/extra
  sed -i "s/add_clang_executable/add_clang_tool/g" tools/extra/clangd/indexer/CMakeLists.txt
  patch -Np1 -i ../../enable-SSP-and-PIE-by-default.patch
}

build() {
    if [  -d _build ]; then
        rm -rf _build
    fi
    mkdir _build
    cd _build
    
    cmake "$srcdir"/llvm-project/clang/ -G Ninja \
        -DCMAKE_BUILD_TYPE=Release \
        -DCMAKE_INSTALL_PREFIX=/usr \
        -DBUILD_SHARED_LIBS=ON \
        -DLLVM_LINK_LLVM_DYLIB=ON \
        -DLLVM_ENABLE_RTTI=ON \
        -DLLVM_BUILD_TESTS=ON \
        -DLLVM_INCLUDE_DOCS=ON \
        -DLLVM_BUILD_DOCS=ON \
        -DLLVM_ENABLE_SPHINX=ON \
        -DSPHINX_WARNINGS_AS_ERRORS=OFF \
        -DLLVM_EXTERNAL_LIT=/usr/bin/lit \
        -DLLVM_MAIN_SRC_DIR="$srcdir"/llvm-project/llvm \
        -DLLVM_VERSION_SUFFIX=""
    if [[ ! $NINJAFLAGS ]]; then
        ninja
    else
        ninja "$NINJAFLAGS"
    fi
}

check() {
    cd _build 
    ninja check-clang{,-tools}
}

_python_optimize() {
  python -m compileall "$@"
  python -O -m compileall "$@"
  python -OO -m compileall "$@"
}

package() {
    provides=(clang=$pkgver-$pkgrel clang-tools-extra=$pkgver-$pkgrel clang-git=$pkgver-$pkgrel clang-tools-extra-git=$pkgver-$pkgrel)
    cd _build

    DESTDIR="$pkgdir" ninja install
    install -Dm644 "$srcdir"/llvm-project/clang/LICENSE.TXT "$pkgdir"/usr/share/licenses/$pkgname/LICENSE

    # Remove documentation sources
    rm -r "$pkgdir"/usr/share/doc/clang{,-tools}/html/{_sources,.buildinfo}

    # Move analyzer scripts out of /usr/libexec
    mv "$pkgdir"/usr/libexec/{ccc,c++}-analyzer "$pkgdir"/usr/lib/clang/
    rmdir "$pkgdir"/usr/libexec
    sed -i 's|libexec|lib/clang|' "$pkgdir"/usr/bin/scan-build

    cd "$srcdir"/llvm-project/clang
    # Install Python bindings and optimize them
    install -d "$pkgdir"/usr/lib/python3.7/site-packages
    cp -a bindings/python/clang  "$pkgdir"/usr/lib/python3.7/site-packages/
    _python_optimize "$pkgdir"/usr/lib/python3.7/site-packages
  


  # Compile Python scripts
  _python_optimize "$pkgdir"/usr/share -x 'clang-include-fixer|run-find-all-symbols'
}

# vim:set ts=2 sw=2 et: