Recent builds with mainline DPDK failed due to missing python dependency "elftools". This patch adds it to our system provisioning scripts. Fixes #1770 Signed-off-by: Karol Latecki <karol.latecki@intel.com> Change-Id: I9e3879d9bddd64bb0f7be81120e5fadebefa9eb8 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/6103 Reviewed-by: Michal Berger <michalx.berger@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Monica Kenguva <monica.kenguva@intel.com> Reviewed-by: Paul Luse <paul.e.luse@intel.com> Reviewed-by: <dongx.yi@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot
23 lines
714 B
Bash
Executable File
23 lines
714 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Minimal install
|
|
pkg install -y gmake cunit openssl git bash misc/e2fsprogs-libuuid python \
|
|
ncurses ninja meson py37-pyelftools-0.26
|
|
# Additional dependencies for ISA-L used in compression
|
|
pkg install -y autoconf automake libtool help2man
|
|
if [[ $INSTALL_DEV_TOOLS == "true" ]]; then
|
|
# Tools for developers
|
|
pkg install -y devel/astyle bash py37-pycodestyle \
|
|
misc/e2fsprogs-libuuid sysutils/sg3_utils nasm
|
|
fi
|
|
if [[ $INSTALL_DOCS == "true" ]]; then
|
|
# Additional dependencies for building docs
|
|
pkg install -y doxygen mscgen graphviz
|
|
fi
|
|
|
|
if [[ $INSTALL_LIBURING == "true" ]]; then
|
|
printf 'liburing is not supported on %s, disabling\n' \
|
|
"$(freebsd-version)"
|
|
INSTALL_LIBURING=false
|
|
fi
|