From: Pim van Pelt Date: Sun, 14 Jan 2024 20:02:41 +0000 (+0100) Subject: build: Add Debian12 environment X-Git-Tag: v24.06-rc0~35 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=712fc0308981c61444e593d6bcc2ad62102c726d;p=vpp.git build: Add Debian12 environment Add clang-14 and libffi8 which ship with Debian Bookworm. The project compiles cleanly with these versions. Type: make Change-Id: I17350aae30cec72987792d54d88231b3221b56b9 Signed-off-by: pim@ipng.nl --- diff --git a/Makefile b/Makefile index 70e7dd3dd70..dadb7620cf4 100644 --- a/Makefile +++ b/Makefile @@ -106,6 +106,10 @@ else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-11) DEB_DEPENDS += virtualenv DEB_DEPENDS += clang clang-format-11 LIBFFI=libffi7 +else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-12) + DEB_DEPENDS += virtualenv + DEB_DEPENDS += clang-14 clang-format-14 + LIBFFI=libffi8 else DEB_DEPENDS += clang-11 clang-format-11 LIBFFI=libffi7