-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
poco_env.bash
106 lines (92 loc) · 2.33 KB
/
poco_env.bash
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
# usage:
# . env.bash
# or
# source env.bash
self="${BASH_SOURCE[0]}"
if [ "$self" == "$0" ] ; then
echo "This file must be sourced from bash, not run."
echo "Usage: . $0"
exit 1
fi
if [ -d "$self" ] ; then
basedir="$(cd "$self" || exit; pwd -P)"
else
basedir="$(cd "$(dirname "$self")" || exit; pwd -P)"
fi
OSNAME="${OSNAME:=$(uname -s)}"
export OSNAME
OSARCH="${OSARCH:=$(uname -m)}"
export OSARCH
POCO_BASE="$basedir"
export POCO_BASE
POCO_LIB_PATH=$POCO_BASE/lib/$OSNAME/$OSARCH:$POCO_BASE/lib/$OSNAME/$OSARCH/lib
POCO_BIN_PATH=$POCO_BASE/Foundation/testsuite/bin/$OSNAME/$OSARCH
POCO_PATHS=$POCO_BASE:$POCO_LIB_PATH:$POCO_BIN_PATH
if [[ "$PATH" != *"$POCO_PATHS"* ]]; then
PATH=$POCO_PATHS:$PATH
export PATH
fi
explibpath=
expbinpath=
exppocopath=
function setPath {
# adds POCO_PATHS to system PATH only if they are not there already
IFS=':' read -ra PATHDIR <<< "$1"
for i in "${PATHDIR[@]}"; do
if [[ "$POCO_LIB_PATH" == "$i" ]]; then
explibpath+="$i"
elif [[ "$POCO_BIN_PATH" == "$i" ]]; then
expbinpath+="$i"
elif [[ "$POCO_BASE" == "$i" ]]; then
exppocopath+="$i"
fi
done
}
setPath "$PATH"
if [[ -z "$exppocopath" ]]; then
export PATH="$POCO_BASE:$PATH"
fi
if [[ -z "$explibpath" ]]; then
export PATH="$POCO_LIB_PATH:$PATH"
fi
if [[ -z "$expbinpath" ]]; then
export PATH="$POCO_BIN_PATH:$PATH"
fi
explibpath=
function setLibPath {
# adds POCO_LIB_PATH to (DY)LD_LIBRARY_PATH only if it is not there already
IFS=':' read -ra LIBDIR <<< "$1"
for i in "${LIBDIR[@]}"; do
if [[ "$POCO_LIB_PATH" == "$i" ]]; then
explibpath="$1"
break
fi
done
}
case "${OSNAME}" in
Linux*)
setLibPath "$LD_LIBRARY_PATH"
if [[ -z "$explibpath" ]]; then
export LD_LIBRARY_PATH="$POCO_LIB_PATH:$DYLD_LIBRARY_PATH"
fi
;;
Darwin*)
setLibPath "$DYLD_LIBRARY_PATH"
if [[ -z "$explibpath" ]]; then
export DYLD_LIBRARY_PATH="$POCO_LIB_PATH:$DYLD_LIBRARY_PATH"
fi
;;
esac
# uncomment for sanitizer builds
#LSAN_OPTIONS=verbosity=1:log_threads=1
#export LSAN_OPTIONS
#TSAN_OPTIONS="suppressions=$POCO_BASE/tsan.suppress,second_deadlock_stack=1"
#export TSAN_OPTIONS
echo "\$OSNAME = $OSNAME"
echo "\$OSARCH = $OSARCH"
echo "\$POCO_BASE = $POCO_BASE"
echo "\$PATH = $PATH"
case "${OSNAME}" in
Linux*) echo "\$LD_LIBRARY_PATH = $LD_LIBRARY_PATH";;
Darwin*) echo "\$DYLD_LIBRARY_PATH = $DYLD_LIBRARY_PATH";;
esac