File tree Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 55- [ v0.1.1] ( #v011 )
66- [ v0.1] ( #v01 )
77
8+ # v0.2.1
9+
10+ Patches:
11+ - Fixed uintptr_t implicit conversion issue for msvc
12+ - Better handling for PIC and static linkage in CMake
13+ - Added gcc 5 support
14+ - Various warning fixes
15+ - Added stackwalk64 support for 32-bit x86 mingw/clang and architecture detection
16+ - Added check for stackwalk64 support and CaptureStackBacktrace as a fallback
17+ - Various cmake cleanup and changes to use cpptrace through package managers
18+ - Added sonarlint and implemented some sonarlint fixes
19+
820# v0.2.0
921
1022Key changes:
Original file line number Diff line number Diff line change 66
77project (
88 cpptrace
9- VERSION 0.1.0
9+ VERSION 0.2.1
1010 LANGUAGES C CXX
1111)
1212
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ include(FetchContent)
8585FetchContent_Declare(
8686 cpptrace
8787 GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
88- GIT_TAG v0.2.0 # <HASH or TAG>
88+ GIT_TAG v0.2.1 # <HASH or TAG>
8989)
9090FetchContent_MakeAvailable(cpptrace)
9191target_link_libraries(your_target cpptrace)
@@ -353,7 +353,7 @@ include(FetchContent)
353353FetchContent_Declare(
354354 cpptrace
355355 GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
356- GIT_TAG v0.2.0 # <HASH or TAG>
356+ GIT_TAG v0.2.1 # <HASH or TAG>
357357)
358358FetchContent_MakeAvailable(cpptrace)
359359target_link_libraries(your_target cpptrace)
@@ -369,7 +369,7 @@ information.
369369
370370``` sh
371371git clone https://github.com/jeremy-rifkin/cpptrace.git
372- git checkout v0.2.0
372+ git checkout v0.2.1
373373mkdir cpptrace/build
374374cd cpptrace/build
375375cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -405,7 +405,7 @@ you when installing new libraries.
405405
406406``` ps1
407407git clone https://github.com/jeremy-rifkin/cpptrace.git
408- git checkout v0.2.0
408+ git checkout v0.2.1
409409mkdir cpptrace/build
410410cd cpptrace/build
411411cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -423,7 +423,7 @@ To install just for the local user (or any custom prefix):
423423
424424``` sh
425425git clone https://github.com/jeremy-rifkin/cpptrace.git
426- git checkout v0.2.0
426+ git checkout v0.2.1
427427mkdir cpptrace/build
428428cd cpptrace/build
429429cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME /wherever
You can’t perform that action at this time.
0 commit comments