From 23aea77969dbe0d6053147a220589ebc9fb01348 Mon Sep 17 00:00:00 2001 From: Alexander Lopez Date: Wed, 13 Nov 2024 19:16:23 -0800 Subject: [PATCH] add ccc debug config for actions --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dce78b55..99a87199 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: ccc default build gcc-rel gcc-deb clang-rel clang-deb dsan rsan clean tests samples all-gcc-deb all-gcc-rel all-dsan all-rsan all-clang-deb all-clang-rel dtest rtest util tidy format fanalyze +.PHONY: ccc ccc-deb default build gcc-rel gcc-deb clang-rel clang-deb dsan rsan clean tests samples all-gcc-deb all-gcc-rel all-dsan all-rsan all-clang-deb all-clang-rel dtest rtest util tidy format fanalyze MAKE := $(MAKE) MAKEFLAGS += --no-print-directory @@ -20,6 +20,10 @@ ccc: cmake --preset=gcc-rel -DCMAKE_INSTALL_PREFIX=$(PREFIX) cmake --build $(BUILD_DIR) --target install $(JOBS) +ccc-deb: + cmake --preset=gcc-deb -DCMAKE_INSTALL_PREFIX=$(PREFIX) + cmake --build $(BUILD_DIR) --target install $(JOBS) + install: cmake --build $(BUILD_DIR) --target install $(JOBS)