aboutsummaryrefslogtreecommitdiff
path: root/build-dpdk.sh
blob: c1de18921a8c8ae01337e2f306b85b01fdf57209 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
set -e

export PLATFORM=${PLATFORM:-linux-dpdk}
export ROOT_DIR=$(readlink -f $(dirname $0))
# don't do performance tests, they are not working at the moment
export PERF_TEST=0
source ${ROOT_DIR}/helper/generic
export GENERIC_BUILDDIR="${GENERIC_BUILDDIR:-${BUILDDIR}/odp-dpdk}"
export CUNIT_BUILD=1

#common ODP build script
${ROOT_DIR}/build.sh "$@"

if [[ $? -eq 1 ]]; then
    exit 1
else
    exit 0
fi
## vim: set sw=4 sts=4 et foldmethod=syntax : ##