From 712fc0308981c61444e593d6bcc2ad62102c726d Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Sun, 14 Jan 2024 21:02:41 +0100 Subject: [PATCH] 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 --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) 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 -- 2.16.6