From 93a786b4d7be2d3cdf517b974a5f215b0daaac8f Mon Sep 17 00:00:00 2001 From: Chuan Han Date: Fri, 25 Sep 2020 15:34:06 -0700 Subject: [PATCH] build: fix build for debian testing 1. add libelf-dev to default deb deps 2. Also use libffi7 instead of libffi6 for debian-testing Type: fix Signed-off-by: Chuan Han Change-Id: I9f13955812877422ecb8aac3dd34c5828b9c4607 --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5af0d5707e0..d4d39b381d7 100644 --- a/Makefile +++ b/Makefile @@ -72,7 +72,7 @@ DEB_DEPENDS += python3-venv # ensurepip DEB_DEPENDS += python3-dev # needed for python3 -m pip install psutil # python3.6 on 16.04 requires python36-dev -LIBFFI=libffi6 # works on all but 20.04 +LIBFFI=libffi6 # works on all but 20.04 and debian-testing ifeq ($(OS_VERSION_ID),18.04) DEB_DEPENDS += python-dev python-all python-pip python-virtualenv @@ -92,6 +92,8 @@ else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-10) DEB_DEPENDS += libelf-dev # for libbpf (af_xdp) else DEB_DEPENDS += libssl-dev + DEB_DEPENDS += libelf-dev # for libbpf (af_xdp) + LIBFFI=libffi7 endif DEB_DEPENDS += $(LIBFFI) -- 2.16.6