lighthouse
lighthouse copied to clipboard
"drcov version: 3" is unsupported
"Version 3 changes module offsets to be offsets from the module segment, rather than the whole module base as in version 2."
https://github.com/DynamoRIO/dynamorio/pull/5094 https://github.com/DynamoRIO/dynamorio/pull/5136
Lighthouse cannot support drcov-version-3.
I tried lighthouse lighthouse-0.9.2
, dynamorio DynamoRIO-Windows-9.0.1
, not ok.
I tried lighthouse lighthouse-0.9.2
, dynamorio DynamoRIO-Windows-8.0.18873
, ok.
I got the same issue
I am currently too lazy to write a parser for Lighthouse to handle drcov v3 but here is a dumb python script that converts drcov 3 to drcov 2. I wrote it to help me and maybe it can help you, while this issue remains open :)
https://gist.github.com/wumb0/de671cc5051353fd32af4aecc811a282
I comment the line assert self.version == 2, "Only drcov version 2 log files supported"
in drcov.py
then it is able to load new drcov log version. Is there any potential problem ?
sounds fine
On Thu, Nov 24, 2022 at 10:29 PM Tung Nguyen @.***> wrote:
I comment the line assert self.version == 2, "Only drcov version 2 log files supported" in drcov.py then it is able to load new drcov log version. Is there any potential problem ?
— Reply to this email directly, view it on GitHub https://github.com/gaasedelen/lighthouse/issues/112#issuecomment-1326987553, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABHV3WZGZEAMLU2TRGUV75DWKAW75ANCNFSM5KLDMDMA . You are receiving this because you commented.Message ID: @.***>
hello sir the convert script not working anymore for the last version DynamoRIO-9.93.19510 I got Wrong version or bad format error once i use it
Can you post the output from that version of DR?
On Mon, Jun 5, 2023, 12:05 PM mounirthabet @.***> wrote:
hello sir the convert script not working anymore for the last version DynamoRIO-9.93.19510 I got Wrong version or bad format error once i use it
— Reply to this email directly, view it on GitHub https://github.com/gaasedelen/lighthouse/issues/112#issuecomment-1576581596, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABHV3WYGO333GRCL74KFJXLXJW4KHANCNFSM5KLDMDMA . You are receiving this because you commented.Message ID: @.***>
PR #137 solves this
#137 has been merged into the develop branch, fixing this issue.