Skip to content

Commit 15e5a93

Browse files
authored
Update README.md
1 parent 78a9682 commit 15e5a93

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,11 @@ To run this tool, execute the following command:
5454

5555
where <target_module_path> and <target_args...> are the path and any arguments for the target module you want to measure code coverage for.
5656

57+
# Note
58+
This coverage tool uses DWARF debugging information to obtain line number information.
59+
Pin 3.27 supports DWARF4 as debugging information. When building the application for which you want to measure coverage, please build it with the `-g` and `-gdwarf-4` options.
60+
61+
例).
62+
```
63+
gcc -g -gdwarf-4 main.c
64+
```

0 commit comments

Comments
 (0)