From f57b01ac9bb0ec076b253f5155a19b0a2dbb2f69 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Wed, 21 Feb 2024 11:04:30 -0500 Subject: [PATCH] ci: add debug build to dev makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index e2ce4d0..4ae0110 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,9 @@ deps: build: python3 -m pip install --verbose -e . +build.debug: + CMAKE_ARGS="-DCMAKE_BUILD_TYPE=Debug" python3 -m pip install --verbose --config-settings=cmake.verbose=true --config-settings=logging.level=INFO --config-settings=install.strip=false --editable . + build.cuda: CMAKE_ARGS="-DLLAMA_CUBLAS=on" python3 -m pip install --verbose -e .