Skip to content

Commit

Permalink
Location bug with GNU attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
Seva Alekseyev committed Feb 6, 2020
1 parent b913aed commit f2d789f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dwex/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from .tree import DWARFTreeModel, has_code_location
from .scriptdlg import ScriptDlg

version=(0,52)
version=(0,53)

# TODO:
# Low level raw bytes for expressions in location lists
Expand Down
5 changes: 4 additions & 1 deletion dwex/dwex_elftools/dwarf/locationlists.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,7 @@ def _attribute_is_loclistptr_class(attr):
'DW_AT_data_member_location',
'DW_AT_frame_base', 'DW_AT_segment',
'DW_AT_static_link', 'DW_AT_use_location',
'DW_AT_vtable_elem_location'))
'DW_AT_vtable_elem_location',
'DW_AT_GNU_call_site_value',
'DW_AT_GNU_call_site_target',
'DW_AT_GNU_call_site_data_value'))
4 changes: 4 additions & 0 deletions make.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@echo off
del /q dist\*.*
python setup.py sdist
twine upload -u sevaa dist/*
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def run(self):

setup(
name='dwex',
version='0.52',
version='0.53',
packages=['dwex',
'dwex.dwex_elftools',
'dwex.dwex_elftools.elf',
Expand Down

0 comments on commit f2d789f

Please sign in to comment.