12 KiB
addr2line Change Log
0.24.2 (2024/10/04)
Changed
-
Enabled caching of DWARF abbreviations. #318
-
Changed the
addr2linebinary to prefer symbol names over DWARF names. #332 -
Updated
gimlidependency.
Added
-
Added
Context::from_arc_dwarf. #327
0.24.1 (2024/07/26)
Changed
- Fixed parsing of partial units, which are found in supplementary object files. #313
0.24.0 (2024/07/16)
Breaking changes
- Updated
gimlidependency.
Changed
-
Changed the order of ranges returned by
Context::find_location_range, and fixed handling in rare situations. #303 #304 #306 -
Improved the performance of
Context::find_location. #305
Added
0.23.0 (2024/05/26)
Breaking changes
-
Updated
gimlidependency. -
Deleted
Context::new,Context::new_with_sup, andbuiltin_split_dwarf_loader. UseContext::from_dwarforLoader::newinstead. This removesobjectfrom the public API. #296
Changed
-
Fixed handling of column 0 in the line table. #290
-
Moved
addr2linefromexamplestobin. Requires thebinfeature. #291 -
Split up
lib.rsinto smaller modules. #292
Added
0.22.0 (2024/04/11)
Breaking changes
- Updated
gimliandobjectdependencies.
0.21.0 (2023/08/12)
Breaking changes
- Updated
gimli,object, andfallible-iteratordependencies.
Changed
-
The minimum supported rust version is 1.65.0.
-
Store boxed slices instead of
Vecobjects inContext. #278
0.20.0 (2023/04/15)
Breaking changes
-
The minimum supported rust version is 1.58.0.
-
Changed
Context::find_framesto returnLookupResult. UseLookupResult::skip_all_loadsto obtain the result without loading split DWARF. #260 -
Replaced
Context::find_dwarf_unitwithContext::find_dwarf_and_unit. #260 -
Updated
objectdependency.
Changed
- Fix handling of file index 0 for DWARF 5. #264
Added
- Added types and methods to support loading split DWARF:
LookupResult,SplitDwarfLoad,SplitDwarfLoader,Context::preload_units. #260 #262 #263
0.19.0 (2022/11/24)
Breaking changes
- Updated
gimliandobjectdependencies.
0.18.0 (2022/07/16)
Breaking changes
- Updated
objectdependency.
Changed
-
Fixed handling of relative path for
DW_AT_comp_dir. #239 -
Fixed handling of
DW_FORM_addrxfor DWARF 5 support. #243 -
Fixed handling of units that are missing range information. #249
0.17.0 (2021/10/24)
Breaking changes
- Updated
gimliandobjectdependencies.
Changed
- Use
skip_attributesto improve performance. #236
0.16.0 (2021/07/26)
Breaking changes
- Updated
gimliandobjectdependencies.
0.15.2 (2021/06/04)
Fixed
- Allow
Contextto beSend. #219
0.15.1 (2021/05/02)
Fixed
- Don't ignore aranges with address 0. #217
0.15.0 (2021/05/02)
Breaking changes
-
Updated
gimliandobjectdependencies. #215 -
Added
debug_arangesparameter toContext::from_sections. #200
Added
Fixed
-
Fixed handling of Windows paths in locations. #209
-
examples/addr2line: Flush stdout after each response. #210
-
examples/addr2line: Avoid copying every section. #213
0.14.1 (2020/12/31)
Fixed
- Fix location lookup for skeleton units. #201
Added
0.14.0 (2020/10/27)
Breaking changes
- Updated
gimliandobjectdependencies.
Fixed
-
Handle units that only have line information. #188
-
Handle DWARF units with version <= 4 and no
DW_AT_name. #191 -
Fix handling of
DW_FORM_ref_addr. #193
0.13.0 (2020/07/07)
Breaking changes
-
Updated
gimliandobjectdependencies. -
Added
rustc-dep-of-stdfeature. #166
Changed
-
Improve performance by parsing function contents lazily. #178
-
Don't skip
.debug_infoand.debug_lineentries with a zero address. #182
0.12.2 (2020/06/21)
Fixed
- Avoid linear search for
DW_FORM_ref_addr. #175
0.12.1 (2020/05/19)
Fixed
-
Handle units with overlapping address ranges. #163
-
Don't assert for functions with overlapping address ranges. #168
0.12.0 (2020/05/12)
Breaking changes
-
Updated
gimliandobjectdependencies. -
Added more optional features:
smallvecandfallible-iterator. #160
Added
- Added
Context::dwarfandContext::find_dwarf_unit. #159
Changed
- Removed
lazycelldependency. #160
0.11.0 (2020/01/11)
Breaking changes
-
Updated
gimliandobjectdependencies. -
#130 Changed
Location::filefromOption<String>toOption<&str>. This required adding lifetime parameters toLocationand other structs that contain it. -
#152 Changed
Location::lineandLocation::columnfromOption<u64>toOption<u32>. -
#156 Deleted
allocfeature, and fixedno-stdbuilds with stable rust. Removed defaultReaderparameter forContext, and addedObjectContextinstead.
Added
- #134
Added
Context::from_dwarf.
Changed
-
#133 Fixed handling of units that can't be parsed.
-
#155 Fixed
addr2lineoutput to match binutils. -
#130 Improved
.debug_lineparsing performance. -
#148 #150 #151 #152 Improved
.debug_infoparsing performance.
0.10.0 (2019/07/07)
Breaking changes
- #127
Update
gimli.
0.9.0 (2019/05/02)
Breaking changes
- #121
Update
gimli,object, andfallible-iteratordependencies.
Added
- #121
Reexport
gimli,object, andfallible-iterator.
0.8.0 (2019/02/06)
Breaking changes
- #107
Update
objectdependency to 0.11. This is part of the public API.
Added
-
#101 Add
objectfeature (enabled by default). Disable this feature to remove theobjectdependency andContext::newAPI. -
#102 Add
std(enabled by default) andallocfeatures.