blob: f2686c89fc532d1b19380719bec3364c1df4a62b (
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
|
#!/usr/bin/bash
#
# pgo.sh - Compile with, or utilize profile guided optimization
#
[[ -n "$LIBMAKEPKG_BUILDENV_PGO_SH" ]] && return
LIBMAKEPKG_BUILDENV_PGO_SH=1
LIBRARY=${LIBRARY:-'@libmakepkgdir@'}
source "$LIBRARY/util/message.sh"
source "$LIBRARY/util/option.sh"
build_options+=('pgo')
buildenv_functions+=('buildenv_pgo')
buildenv_pgo() {
if check_buildoption "pgo" "y"; then
[[ -n ${PROFDEST} ]] && _PROFDEST=$(canonicalize_path ${PROFDEST})
PROFDEST=${_PROFDEST:-$PROFDEST}
PROFDEST=${PROFDEST:-$startdir} #default to $startdir if undefined
if [[ ! -w $PROFDEST ]] ; then
error "$(gettext "You do not have write permission to store profiles in %s.")" "$PROFDEST"
plain "$(gettext "Aborting...")"
exit 1
fi
[[ "$INFAKEROOT" == 1 ]] && return
if [[ ! -d $PROFDEST/$pkgbase.gen ]]; then
pgoflags=" -fprofile-generate -fprofile-dir=$PROFDEST/$pkgbase.gen"
pgoldflags=" -lgcov --coverage"
msg2 "Profile data will be generated."
else
[[ -d $PROFDEST/$pkgbase.used ]] && rm -rf $PROFDEST/$pkgbase.used
mv $PROFDEST/$pkgbase.{gen,used}
pgoflags=" -fprofile-correction -fprofile-use -fprofile-dir=$PROFDEST/$pkgbase.used"
pgoldflags=" -lgcov"
msg2 "Profile data will be applied."
fi
CFLAGS+="$pgoflags"
CXXFLAGS+="$pgoflags"
LDFLAGS+="$pgoldflags"
fi
}
|