Skip to content

Commit

Permalink
add ccc debug config for actions
Browse files Browse the repository at this point in the history
  • Loading branch information
agl-alexglopez committed Nov 14, 2024
1 parent 5581e07 commit 23aea77
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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)

Expand Down

0 comments on commit 23aea77

Please sign in to comment.