test mbuf attach
[dpdk.git] / devtools / test-build.sh
1 #! /bin/sh -e
2 # SPDX-License-Identifier: BSD-3-Clause
3 # Copyright 2015 6WIND S.A.
4
5 default_path=$PATH
6
7 # Load config options:
8 # - ARMV8_CRYPTO_LIB_PATH
9 # - DPDK_ABI_REF_DIR
10 # - DPDK_ABI_REF_VERSION
11 # - DPDK_BUILD_TEST_CONFIGS (defconfig1+option1+option2 defconfig2)
12 # - DPDK_BUILD_TEST_DIR
13 # - DPDK_DEP_ARCHIVE
14 # - DPDK_DEP_BPF (y/[n])
15 # - DPDK_DEP_CFLAGS
16 # - DPDK_DEP_ELF (y/[n])
17 # - DPDK_DEP_FDT (y/[n])
18 # - DPDK_DEP_ISAL (y/[n])
19 # - DPDK_DEP_JSON (y/[n])
20 # - DPDK_DEP_LDFLAGS
21 # - DPDK_DEP_MLX (y/[n])
22 # - DPDK_DEP_NFB (y/[n])
23 # - DPDK_DEP_NUMA ([y]/n)
24 # - DPDK_DEP_PCAP (y/[n])
25 # - DPDK_DEP_SSL (y/[n])
26 # - DPDK_DEP_IPSEC_MB (y/[n])
27 # - DPDK_DEP_SZE (y/[n])
28 # - DPDK_DEP_ZLIB (y/[n])
29 # - DPDK_MAKE_JOBS (int)
30 # - DPDK_NOTIFY (notify-send)
31 # - FLEXRAN_SDK
32 # - LIBMUSDK_PATH
33 devtools_dir=$(dirname $(readlink -f $0))
34 . $devtools_dir/load-devel-config
35
36 print_usage () {
37         echo "usage: $(basename $0) [-h] [-jX] [-s] [config1 [config2] ...]]"
38 }
39
40 print_help () {
41         echo 'Test building several targets with different options'
42         echo
43         print_usage
44         cat <<- END_OF_HELP
45
46         options:
47                 -h    this help
48                 -jX   use X parallel jobs in "make"
49                 -s    short test only first config without tests|examples|doc
50                 -v    verbose build
51
52         config: defconfig[[~][+]option1[[~][+]option2...]]
53                 Example: x86_64-native-linux-gcc+debug~RXTX_CALLBACKS
54                 The lowercase options are defined inside $(basename $0).
55                 The uppercase options can be the end of a defconfig option
56                 to enable if prefixed with '+' or to disable if prefixed with '~'.
57                 Default is to automatically enable most of the options.
58                 The external dependencies are setup with DPDK_DEP_* variables.
59                 If no config on command line, DPDK_BUILD_TEST_CONFIGS is used.
60         END_OF_HELP
61 }
62
63 [ -z $MAKE ] && command -v gmake > /dev/null && MAKE=gmake
64 [ -z $MAKE ] && command -v make > /dev/null && MAKE=make
65 [ -z $MAKE ] && echo "Cannot find make or gmake" && exit 1
66
67 J=$DPDK_MAKE_JOBS
68 builds_dir=${DPDK_BUILD_TEST_DIR:-.}
69 short=false
70 unset verbose
71 while getopts hj:sv ARG ; do
72         case $ARG in
73                 j ) J=$OPTARG ;;
74                 s ) short=true ;;
75                 v ) verbose='V=1' ;;
76                 h ) print_help ; exit 0 ;;
77                 ? ) print_usage ; exit 1 ;;
78         esac
79 done
80 shift $(($OPTIND - 1))
81 configs=${*:-$DPDK_BUILD_TEST_CONFIGS}
82
83 success=false
84 on_exit ()
85 {
86         if $success ; then
87                 [ "$DPDK_NOTIFY" != notify-send ] || \
88                         notify-send -u low --icon=dialog-information 'DPDK build' 'finished'
89         elif [ -z "$signal" ] ; then
90                 [ -z "$dir" ] || echo "failed to build $dir" >&2
91                 [ "$DPDK_NOTIFY" != notify-send ] || \
92                         notify-send -u low --icon=dialog-error 'DPDK build' 'failed'
93         fi
94 }
95 # catch manual interrupt to ignore notification
96 trap "signal=INT ; trap - INT ; kill -INT $$" INT
97 # notify result on exit
98 trap on_exit EXIT
99
100 cd $devtools_dir/..
101
102 reset_env ()
103 {
104         export PATH=$default_path
105         unset CROSS
106         unset DPDK_DEP_ARCHIVE
107         unset DPDK_DEP_BPF
108         unset DPDK_DEP_CFLAGS
109         unset DPDK_DEP_ELF
110         unset DPDK_DEP_FDT
111         unset DPDK_DEP_ISAL
112         unset DPDK_DEP_JSON
113         unset DPDK_DEP_LDFLAGS
114         unset DPDK_DEP_MLX
115         unset DPDK_DEP_NFB
116         unset DPDK_DEP_NUMA
117         unset DPDK_DEP_PCAP
118         unset DPDK_DEP_SSL
119         unset DPDK_DEP_IPSEC_MB
120         unset DPDK_DEP_SZE
121         unset DPDK_DEP_ZLIB
122         unset ARMV8_CRYPTO_LIB_PATH
123         unset FLEXRAN_SDK
124         unset LIBMUSDK_PATH
125         unset PQOS_INSTALL_PATH
126 }
127
128 config () # <directory> <target> <options>
129 {
130         reconfig=false
131         if git rev-parse 2>&- && [ -n "$(git diff HEAD~ -- config)" ] ; then
132                 echo 'Default config may have changed'
133                 reconfig=true
134         fi
135         if [ ! -e $1/.config ] || $reconfig ; then
136                 echo "================== Configure $1"
137                 ${MAKE} T=$2 O=$1 config
138
139                 echo 'Customize configuration'
140                 # Built-in options (lowercase)
141                 ! echo $3 | grep -q '+default' || \
142                 sed -ri="" 's,(RTE_MACHINE=")native,\1default,' $1/.config
143                 ! echo $3 | grep -q '+kmods' || \
144                 sed -ri="" 's,(IGB_UIO=|KNI_KMOD=)n,\1y,' $1/.config
145                 echo $3 | grep -q '+next' || \
146                 sed -ri=""           's,(NEXT_ABI=)y,\1n,' $1/.config
147                 ! echo $3 | grep -q '+shared' || \
148                 sed -ri=""         's,(SHARED_LIB=)n,\1y,' $1/.config
149                 ! echo $3 | grep -q '+debug' || ( \
150                 sed -ri=""  's,(RTE_LOG_DP_LEVEL=).*,\1RTE_LOG_DEBUG,' $1/.config
151                 sed -ri=""           's,(_DEBUG.*=)n,\1y,' $1/.config
152                 sed -ri=""  's,(_STAT)([S_].*=|=)n,\1\2y,' $1/.config
153                 sed -ri="" 's,(TEST_PMD_RECORD_.*=)n,\1y,' $1/.config )
154
155                 # Automatic configuration
156                 ! echo $2 | grep -q 'arm64' || \
157                 sed -ri=""        's,(ARM_USE_WFE=)n,\1y,' $1/.config
158                 test "$DPDK_DEP_NUMA" != n || \
159                 sed -ri=""             's,(NUMA.*=)y,\1n,' $1/.config
160                 sed -ri=""    's,(LIBRTE_IEEE1588=)n,\1y,' $1/.config
161                 sed -ri=""             's,(BYPASS=)n,\1y,' $1/.config
162                 test "$DPDK_DEP_ARCHIVE" != y || \
163                 sed -ri=""       's,(RESOURCE_TAR=)n,\1y,' $1/.config
164                 test "$DPDK_DEP_BPF" != y || \
165                 sed -ri=""         's,(PMD_AF_XDP=)n,\1y,' $1/.config
166                 test "$DPDK_DEP_FDT" != y || \
167                 sed -ri=""   's,(PMD_IFPGA_RAWDEV=)n,\1y,' $1/.config
168                 test "$DPDK_DEP_FDT" != y || \
169                 sed -ri=""         's,(IPN3KE_PMD=)n,\1y,' $1/.config
170                 test "$DPDK_DEP_ISAL" != y || \
171                 sed -ri=""           's,(PMD_ISAL=)n,\1y,' $1/.config
172                 test "$DPDK_DEP_MLX" != y || \
173                 sed -ri=""          's,(MLX.*_PMD=)n,\1y,' $1/.config
174                 test "$DPDK_DEP_NFB" != y || \
175                 sed -ri=""            's,(NFB_PMD=)n,\1y,' $1/.config
176                 test "$DPDK_DEP_SZE" != y || \
177                 sed -ri=""       's,(PMD_SZEDATA2=)n,\1y,' $1/.config
178                 test "$DPDK_DEP_ZLIB" != y || \
179                 sed -ri=""          's,(BNX2X_PMD=)n,\1y,' $1/.config
180                 test "$DPDK_DEP_ZLIB" != y || \
181                 sed -ri=""           's,(PMD_ZLIB=)n,\1y,' $1/.config
182                 test "$DPDK_DEP_ZLIB" != y || \
183                 sed -ri=""   's,(COMPRESSDEV_TEST=)n,\1y,' $1/.config
184                 test "$DPDK_DEP_PCAP" != y || \
185                 sed -ri=""               's,(PCAP=)n,\1y,' $1/.config
186                 test -z "$ARMV8_CRYPTO_LIB_PATH" || \
187                 sed -ri=""   's,(PMD_ARMV8_CRYPTO=)n,\1y,' $1/.config
188                 test "$DPDK_DEP_IPSEC_MB" != y || \
189                 sed -ri=""       's,(PMD_AESNI_MB=)n,\1y,' $1/.config
190                 test "$DPDK_DEP_IPSEC_MB" != y || \
191                 sed -ri=""      's,(PMD_AESNI_GCM=)n,\1y,' $1/.config
192                 test "$DPDK_DEP_IPSEC_MB" != y || \
193                 sed -ri=""            's,(PMD_ZUC=)n,\1y,' $1/.config
194                 test "$DPDK_DEP_IPSEC_MB" != y || \
195                 sed -ri=""         's,(PMD_KASUMI=)n,\1y,' $1/.config
196                 test "$DPDK_DEP_IPSEC_MB" != y || \
197                 sed -ri=""         's,(PMD_SNOW3G=)n,\1y,' $1/.config
198                 test "$DPDK_DEP_SSL" != y || \
199                 sed -ri=""            's,(PMD_CCP=)n,\1y,' $1/.config
200                 test "$DPDK_DEP_SSL" != y || \
201                 sed -ri=""        's,(PMD_OPENSSL=)n,\1y,' $1/.config
202                 test "$DPDK_DEP_SSL" != y || \
203                 sed -ri=""            's,(QAT_SYM=)n,\1y,' $1/.config
204                 test -z "$FLEXRAN_SDK" || \
205                 sed -ri=""     's,(BBDEV_TURBO_SW=)n,\1y,' $1/.config
206                 sed -ri=""           's,(SCHED_.*=)n,\1y,' $1/.config
207                 test -z "$LIBMUSDK_PATH" || \
208                 sed -ri=""   's,(PMD_MVSAM_CRYPTO=)n,\1y,' $1/.config
209                 test -z "$LIBMUSDK_PATH" || \
210                 sed -ri=""          's,(MVPP2_PMD=)n,\1y,' $1/.config
211                 test -z "$LIBMUSDK_PATH" || \
212                 sed -ri=""         's,(MVNETA_PMD=)n,\1y,' $1/.config
213                 test "$DPDK_DEP_ELF" != y || \
214                 sed -ri=""            's,(BPF_ELF=)n,\1y,' $1/.config
215                 test "$DPDK_DEP_JSON" != y || \
216                 sed -ri=""          's,(TELEMETRY=)n,\1y,' $1/.config
217                 build_config_hook $1 $2 $3
218
219                 # Explicit enabler/disabler (uppercase)
220                 for option in $(echo $3 | sed 's,[~+], &,g') ; do
221                         pattern=$(echo $option | cut -c2-)
222                         if echo $option | grep -q '^~' ; then
223                                 sed -ri="" "s,($pattern=)y,\1n," $1/.config
224                         elif echo $option | grep -q '^+' ; then
225                                 sed -ri="" "s,($pattern=)n,\1y," $1/.config
226                         fi
227                 done
228         fi
229 }
230
231 # default empty hook to override in devel config
232 build_config_hook () # <directory> <target> <options>
233 {
234         :
235 }
236
237 for conf in $configs ; do
238         target=$(echo $conf | sed 's,[~+].*,,')
239         # reload config with DPDK_TARGET set
240         DPDK_TARGET=$target
241         reset_env
242         . $devtools_dir/load-devel-config
243
244         options=$(echo $conf | sed 's,[^~+]*,,')
245         dir=$builds_dir/$conf
246         config $dir $target $options
247
248         echo "================== Build $conf"
249         ${MAKE} -j$J EXTRA_CFLAGS="-Wfatal-errors -g $DPDK_DEP_CFLAGS" \
250                 EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" $verbose O=$dir
251         ! $short || break
252         export RTE_TARGET=$target
253         rm -rf $dir/install
254         ${MAKE} install O=$dir DESTDIR=$dir/install prefix=
255         echo "================== Build examples for $conf"
256         export RTE_SDK=$(readlink -f $dir)/install/share/dpdk
257         ln -sTf $(pwd)/lib $RTE_SDK/lib # workaround for vm_power_manager
258         grep -q 'SHARED_LIB=n' $dir/.config || # skip examples with static libs
259         ${MAKE} -j$J -sC examples \
260                 EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" $verbose \
261                 O=$(readlink -f $dir)/examples
262         unset RTE_TARGET
263         grep -q 'SHARED_LIB=n' $dir/.config || # skip ABI check with static libs
264         if [ -n "$DPDK_ABI_REF_VERSION" ]; then
265                 abirefdir=${DPDK_ABI_REF_DIR:-reference}/$DPDK_ABI_REF_VERSION
266                 if [ ! -d $abirefdir/$conf ]; then
267                         # clone current sources
268                         if [ ! -d $abirefdir/src ]; then
269                                 git clone --local --no-hardlinks \
270                                         --single-branch \
271                                         -b $DPDK_ABI_REF_VERSION \
272                                         $(pwd) $abirefdir/src
273                         fi
274
275                         cd $abirefdir/src
276
277                         rm -rf $abirefdir/build
278                         config $abirefdir/build $target $options
279
280                         echo -n "================== Build $conf "
281                         echo "($DPDK_ABI_REF_VERSION)"
282                         ${MAKE} -j$J \
283                                 EXTRA_CFLAGS="-Wno-error -g $DPDK_DEP_CFLAGS" \
284                                 EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" $verbose \
285                                 O=$abirefdir/build
286                         export RTE_TARGET=$target
287                         ${MAKE} install O=$abirefdir/build \
288                                 DESTDIR=$abirefdir/$conf \
289                                 prefix=
290                         unset RTE_TARGET
291                         $devtools_dir/gen-abi.sh $abirefdir/$conf
292
293                         # back to current workdir
294                         cd $devtools_dir/..
295                 fi
296
297                 echo "================== Check ABI $conf"
298                 $devtools_dir/gen-abi.sh $dir/install
299                 $devtools_dir/check-abi.sh $abirefdir/$conf $dir/install
300         fi
301         echo "################## $conf done."
302         unset dir
303 done
304
305 if ! $short ; then
306         mkdir -p .check
307         echo "================== Build doxygen HTML API"
308         ${MAKE} doc-api-html >/dev/null 2>.check/doc.txt
309         echo "================== Build sphinx HTML guides"
310         ${MAKE} doc-guides-html >/dev/null 2>>.check/doc.txt
311         echo "================== Check docs"
312         diff -u /dev/null .check/doc.txt
313 fi
314
315 success=true