Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c26004b commit 2907c26Copy full SHA for 2907c26
Makefile
@@ -13,7 +13,13 @@ build:
13
python3 -m pip install --verbose -e .
14
15
build.debug:
16
- 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 .
+ python3 -m pip install \
17
+ --verbose \
18
+ --config-settings=cmake.verbose=true \
19
+ --config-settings=logging.level=INFO \
20
+ --config-settings=install.strip=false \
21
+ --config-settings=cmake.args="-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_C_FLAGS='-ggdb -O0';-DCMAKE_CXX_FLAGS='-ggdb -O0'" \
22
+ --editable .
23
24
build.cuda:
25
CMAKE_ARGS="-DLLAMA_CUDA=on" python3 -m pip install --verbose -e .
0 commit comments