aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorPim van Pelt <pim@ipng.nl>2024-01-14 21:02:41 +0100
committerPim van Pelt <pim@ipng.nl>2024-01-14 21:10:33 +0100
commit712fc0308981c61444e593d6bcc2ad62102c726d (patch)
tree715a070437de75298559b012e0bfe562de506c44 /Makefile
parented4e612e60d4690ad60194ce11f86b762d026020 (diff)
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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
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