Skip to content

Commit 3e1baf5

Browse files
committed
Bump to libdwarf v2.0.0
1 parent 19eeb69 commit 3e1baf5

6 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1202,7 +1202,7 @@ This section only applies to the dbghelp backend (`CPPTRACE_GET_SYMBOLS_WITH_DBG
12021202
12031203
When loading a DLL at runtime with `LoadLibrary` after a stacktrace has already been generated,
12041204
symbols from that library may not be resolved correctly for subsequent stacktraces. To fix this,
1205-
call `cpptrace::experimental::load_symbols_for_file` with the same filename that was passed to
1205+
call `cpptrace::experimental::load_symbols_for_file` with the same filename that was passed to
12061206
`LoadLibrary`.
12071207
12081208
```cpp
@@ -1395,7 +1395,7 @@ make install
13951395
cd ~/scratch/cpptrace-test
13961396
git clone https://github.com/jeremy-rifkin/libdwarf-lite.git
13971397
cd libdwarf-lite
1398-
git checkout fe09ca800b988e2ff21225ac5e7468ceade2a30e
1398+
git checkout 23044a5654d4abc45f0864a06d42144365d9a425 # 2.0.0
13991399
mkdir build
14001400
cd build
14011401
cmake .. -DPIC_ALWAYS=On -DBUILD_DWARFDUMP=Off -DCMAKE_PREFIX_PATH=~/scratch/cpptrace-test/resources -DCMAKE_INSTALL_PREFIX=~/scratch/cpptrace-test/resources

ci/setup-prerequisites-mingw.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ mkdir libdwarf
1717
cd libdwarf
1818
git init
1919
git remote add origin https://github.com/jeremy-rifkin/libdwarf-lite.git
20-
git fetch --depth 1 origin fe09ca800b988e2ff21225ac5e7468ceade2a30e
20+
git fetch --depth 1 origin 23044a5654d4abc45f0864a06d42144365d9a425 # 2.0.0
2121
git checkout FETCH_HEAD
2222
mkdir build
2323
cd build

ci/setup-prerequisites-unittest-macos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ mkdir libdwarf
1515
cd libdwarf
1616
git init
1717
git remote add origin https://github.com/jeremy-rifkin/libdwarf-lite.git
18-
git fetch --depth 1 origin fe09ca800b988e2ff21225ac5e7468ceade2a30e # 0.11.1
18+
git fetch --depth 1 origin 23044a5654d4abc45f0864a06d42144365d9a425 # 2.0.0
1919
git checkout FETCH_HEAD
2020
mkdir build
2121
cd build

ci/setup-prerequisites-unittest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ mkdir libdwarf
1515
cd libdwarf
1616
git init
1717
git remote add origin https://github.com/jeremy-rifkin/libdwarf-lite.git
18-
git fetch --depth 1 origin fe09ca800b988e2ff21225ac5e7468ceade2a30e # 0.11.1
18+
git fetch --depth 1 origin 23044a5654d4abc45f0864a06d42144365d9a425 # 2.0.0
1919
git checkout FETCH_HEAD
2020
mkdir build
2121
cd build

ci/setup-prerequisites.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ mkdir libdwarf
1616
cd libdwarf
1717
git init
1818
git remote add origin https://github.com/jeremy-rifkin/libdwarf-lite.git
19-
git fetch --depth 1 origin fe09ca800b988e2ff21225ac5e7468ceade2a30e
19+
git fetch --depth 1 origin 23044a5654d4abc45f0864a06d42144365d9a425 # 2.0.0
2020
git checkout FETCH_HEAD
2121
mkdir build
2222
cd build

cmake/OptionVariables.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ option(CPPTRACE_UNPREFIXED_TRY_CATCH "" OFF)
182182
option(CPPTRACE_USE_EXTERNAL_GTEST "" OFF)
183183
set(CPPTRACE_ZSTD_URL "https://github.com/facebook/zstd/releases/download/v1.5.7/zstd-1.5.7.tar.gz" CACHE STRING "")
184184
set(CPPTRACE_LIBDWARF_REPO "https://github.com/jeremy-rifkin/libdwarf-lite.git" CACHE STRING "")
185-
set(CPPTRACE_LIBDWARF_TAG "5e71a74491dddc231664bbcd6a8cf8a8643918e9" CACHE STRING "") # v0.12.0
185+
set(CPPTRACE_LIBDWARF_TAG "23044a5654d4abc45f0864a06d42144365d9a425" CACHE STRING "") # v2.0.0
186186
set(CPPTRACE_LIBDWARF_SHALLOW "1" CACHE STRING "")
187187
option(CPPTRACE_PROVIDE_EXPORT_SET "" ON)
188188
option(CPPTRACE_PROVIDE_EXPORT_SET_FOR_LIBDWARF "" OFF)

0 commit comments

Comments
 (0)