Skip to content

Commit c453582

Browse files
committed
Improve: Log failing lines
1 parent 8428b7f commit c453582

File tree

3 files changed

+88
-72
lines changed

3 files changed

+88
-72
lines changed

.gitignore

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ bin
1010
.cache
1111

1212
# C++ builds
13-
build
14-
build_release
15-
build_debug
16-
build_artifacts
13+
/build
14+
/build_release
15+
/build_debug
16+
/build_relwithdebinfo
17+
/build_artifacts
1718
_deps
1819
CMakeCache.txt
1920
CMakeFiles

CONTRIBUTING.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,14 @@ cmake --build build_release --config Release
4646
build_release/test_cpp
4747
```
4848

49+
For development purposes, you may want to include symbols information in the build:
50+
51+
```sh
52+
cmake -DUSEARCH_BUILD_TEST_CPP=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo -B build_relwithdebinfo
53+
cmake --build build_relwithdebinfo --config RelWithDebInfo
54+
build_relwithdebinfo/test_cpp
55+
```
56+
4957
The CMakeLists.txt file has a number of options you can pass:
5058

5159
- What to build:

0 commit comments

Comments
 (0)