blob: 075132eeaf82f0a220502351d4bf09e516d1495f (
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
Win32BuildSetup=/xbmc/project/Win32BuildSetup
ERRORFILE=$Win32BuildSetup/errormingw
NOPFILE=$Win32BuildSetup/noprompt
MAKECLEANFILE=$Win32BuildSetup/makeclean
BGPROCESSFILE=$Win32BuildSetup/bgprocess
TOUCH=/bin/touch
RM=/bin/rm
NOPROMPT=0
MAKECLEAN=""
MAKEFLAGS=""
TOOLS="mingw"
export _WIN32_WINNT=0x0600
export NTDDI_VERSION=0x06000000
while true; do
case $1 in
--tools=* ) TOOLS="${1#*=}"; shift ;;
--build32=* ) build32="${1#*=}"; shift ;;
--build64=* ) build64="${1#*=}"; shift ;;
--prompt=* ) PROMPTLEVEL="${1#*=}"; shift ;;
--mode=* ) BUILDMODE="${1#*=}"; shift ;;
-- ) shift; break ;;
-* ) shift ;;
* ) break ;;
esac
done
throwerror() {
$TOUCH $ERRORFILE
echo failed to compile $1
if [ $NOPROMPT == 0 ]; then
read
fi
}
setfilepath() {
FILEPATH=$1
}
checkfiles() {
for i in $@; do
if [ ! -f "$FILEPATH/$i" ]; then
throwerror "$FILEPATH/$i"
exit 1
fi
done
}
#start the process backgrounded
runBackgroundProcess() {
$TOUCH $BGPROCESSFILE
echo "backgrounding: sh $1 $BGPROCESSFILE $TOOLS & (workdir: $(PWD))"
sh $1 $BGPROCESSFILE $targetBuild $TOOLS &
echo "waiting on bgprocess..."
while [ -f $BGPROCESSFILE ]; do
echo -n "."
sleep 5
done
}
buildProcess() {
cd /xbmc/tools/buildsteps/win32
# compile our mingw dlls
echo "-------------------------------------------------------------------------------"
echo "compiling mingw libs $BITS"
echo
echo " NOPROMPT = $NOPROMPT"
echo " MAKECLEAN = $MAKECLEAN"
echo " WORKSPACE = $WORKSPACE"
echo " TOOLCHAIN = $TOOLS"
echo
echo "-------------------------------------------------------------------------------"
echo -ne "\033]0;building FFmpeg $BITS\007"
echo "-------------------------------------------------"
echo " building FFmpeg $BITS"
echo "-------------------------------------------------"
runBackgroundProcess "./buildffmpeg.sh $MAKECLEAN"
setfilepath /xbmc/system/players/VideoPlayer
checkfiles avcodec-56.dll avformat-56.dll avutil-54.dll postproc-53.dll swscale-3.dll avfilter-5.dll swresample-1.dll
echo "-------------------------------------------------"
echo " building of FFmpeg $BITS done..."
echo "-------------------------------------------------"
echo -ne "\033]0;building libdvd $BITS\007"
echo "-------------------------------------------------"
echo " building libdvd $BITS"
echo "-------------------------------------------------"
runBackgroundProcess "./buildlibdvd.sh $MAKECLEAN"
setfilepath /xbmc/system/players/VideoPlayer
checkfiles libdvdcss-2.dll libdvdnav.dll
echo "-------------------------------------------------"
echo " building of libdvd $BITS done..."
echo "-------------------------------------------------"
echo "-------------------------------------------------------------------------------"
echo
echo "compile mingw libs $BITS done..."
echo
echo "-------------------------------------------------------------------------------"
}
run_builds() {
new_updates="no"
new_updates_packages=""
if [[ $build32 = "yes" ]]; then
source /local32/etc/profile.local
buildProcess
echo "-------------------------------------------------------------------------------"
echo "compile all libs 32bit done..."
echo "-------------------------------------------------------------------------------"
fi
if [[ $build64 = "yes" ]]; then
source /local64/etc/profile.local
buildProcess
echo "-------------------------------------------------------------------------------"
echo "compile all libs 64bit done..."
echo "-------------------------------------------------------------------------------"
fi
}
# cleanup
if [ -f $ERRORFILE ]; then
$RM $ERRORFILE
fi
# check for noprompt
if [ "$PROMPTLEVEL" == "noprompt" ]; then
NOPROMPT=1
fi
if [ "$BUILDMODE" == "clean" ]; then
MAKECLEAN="clean"
else
MAKECLEAN="noclean"
fi
if [ $NUMBER_OF_PROCESSORS > 1 ]; then
MAKEFLAGS=-j`expr $NUMBER_OF_PROCESSORS + $NUMBER_OF_PROCESSORS / 2`
fi
run_builds
echo -e "\033]0;compiling done...\007"
echo
# wait for key press
if [ $NOPROMPT == 0 ]; then
echo press a key to close the window
read
fi
|