aboutsummarylogtreecommitdiffstats
path: root/graphite.sh.in
blob: b4e333615300bc0144f7a5c5cbd940a6412181e7 (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
#!/usr/bin/bash
#
#   graphite.sh - Compile with polyhedral model optimization
#

[[ -n "$LIBMAKEPKG_BUILDENV_GRAPHITE_SH" ]] && return
LIBMAKEPKG_BUILDENV_GRAPHITE_SH=1

LIBRARY=${LIBRARY:-'/usr/share/makepkg'}

source "$LIBRARY/util/option.sh"

build_options+=('graphite' 'polly')
buildenv_functions+=('buildenv_graphite')

buildenv_graphite() {
    if check_buildoption "graphite" "y" || check_buildoption "polly" "y"; then
        graphiteflags=" -lgomp -mllvm -polly -mllvm -polly-num-threads=$(getconf _NPROCESSORS_ONLN) -mllvm -polly-parallel"
        check_buildoption "polly" "y" && \
            graphiteflags+=" -Xclang -load -Xclang LLVMPolly.so"
        check_buildoption "graphite" "y" && \
            graphiteflags=" -fgraphite-identity -floop-interchange -floop-nest-optimize -floop-parallelize-all -ftree-loop-distribution -ftree-parallelize-loops=$(getconf _NPROCESSORS_ONLN) -ftree-vectorize"

        CFLAGS+="$graphiteflags"
        CXXFLAGS+="$graphiteflags"
    fi
}