@@ -153,7 +153,7 @@ include(FetchContent)
153153FetchContent_Declare(
154154 cpptrace
155155 GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
156- GIT_TAG v1.0.2 # <HASH or TAG>
156+ GIT_TAG v1.0.4 # <HASH or TAG>
157157)
158158FetchContent_MakeAvailable(cpptrace)
159159target_link_libraries(your_target cpptrace::cpptrace)
@@ -1286,7 +1286,7 @@ namespace cpptrace {
12861286
12871287# ABI Versioning
12881288
1289- Since cpptrace v1.0.2 , the library uses an inline ABI versioning namespace and all symbols part of the public interface
1289+ Since cpptrace v1.0.0 , the library uses an inline ABI versioning namespace and all symbols part of the public interface
12901290are secretly under the namespace `cpptrace::v1`. This is done to allow for potential future library evolution in an
12911291ABI-friendly manner.
12921292
@@ -1314,7 +1314,7 @@ include(FetchContent)
13141314FetchContent_Declare(
13151315 cpptrace
13161316 GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
1317- GIT_TAG v1.0.2 # <HASH or TAG>
1317+ GIT_TAG v1.0.4 # <HASH or TAG>
13181318)
13191319FetchContent_MakeAvailable(cpptrace)
13201320target_link_libraries(your_target cpptrace::cpptrace)
@@ -1330,7 +1330,7 @@ information.
13301330
13311331``` sh
13321332git clone https://github.com/jeremy-rifkin/cpptrace.git
1333- git checkout v1.0.2
1333+ git checkout v1.0.4
13341334mkdir cpptrace/build
13351335cd cpptrace/build
13361336cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -1373,7 +1373,7 @@ you when installing new libraries.
13731373
13741374```ps1
13751375git clone https://github.com/jeremy-rifkin/cpptrace.git
1376- git checkout v1.0.2
1376+ git checkout v1.0.4
13771377mkdir cpptrace/build
13781378cd cpptrace/build
13791379cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -1391,7 +1391,7 @@ To install just for the local user (or any custom prefix):
13911391
13921392``` sh
13931393git clone https://github.com/jeremy-rifkin/cpptrace.git
1394- git checkout v1.0.2
1394+ git checkout v1.0.4
13951395mkdir cpptrace/build
13961396cd cpptrace/build
13971397cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME /wherever
@@ -1474,7 +1474,7 @@ make install
14741474cd ~ /scratch/cpptrace-test
14751475git clone https://github.com/jeremy-rifkin/cpptrace.git
14761476cd cpptrace
1477- git checkout v1.0.2
1477+ git checkout v1.0.4
14781478mkdir build
14791479cd build
14801480cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=On -DCPPTRACE_USE_EXTERNAL_LIBDWARF=On -DCMAKE_PREFIX_PATH=~ /scratch/cpptrace-test/resources -DCMAKE_INSTALL_PREFIX=~ /scratch/cpptrace-test/resources
@@ -1494,7 +1494,7 @@ cpptrace and its dependencies.
14941494Cpptrace is available through conan at https://conan.io/center/recipes/cpptrace .
14951495```
14961496[requires]
1497- cpptrace/1.0.2
1497+ cpptrace/1.0.4
14981498[generators]
14991499CMakeDeps
15001500CMakeToolchain
0 commit comments