Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tejainece/gcov
GCNO and GCDA parser and writer implementation in Dart
https://github.com/tejainece/gcov
Last synced: about 2 months ago
JSON representation
GCNO and GCDA parser and writer implementation in Dart
- Host: GitHub
- URL: https://github.com/tejainece/gcov
- Owner: tejainece
- License: other
- Created: 2016-05-29T11:29:43.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-27T17:06:09.000Z (almost 8 years ago)
- Last Synced: 2023-08-07T12:10:13.575Z (over 1 year ago)
- Language: Dart
- Size: 22.5 KB
- Stars: 12
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gcov
GCNO and GCDA parser and writer implementation in Dart# References
1. [GCOVSpec](http://src.gnu-darwin.org/src/contrib/gcc/gcov-io.h.html)
2. [gcov-dump command source code](https://github.com/gcc-mirror/gcc/blob/edd716b6b1caa1a5cb320a8cd7f626f30198e098/gcc/gcov-dump.c)
3. [gcov-tool command source code](https://github.com/gcc-mirror/gcc/blob/edd716b6b1caa1a5cb320a8cd7f626f30198e098/gcc/gcov-tool.c)
4. [gcov command source code](https://github.com/gcc-mirror/gcc/blob/edd716b6b1caa1a5cb320a8cd7f626f30198e098/gcc/gcov.c)
5. [LLVM implementation of gcov parser](http://llvm.org/docs/doxygen/html/GCOV_8cpp_source.html)