Skip to content

Commit dff8c59

Browse files
committed
Renamed README.md executable name from main to main.exe
1 parent 4e82dc1 commit dff8c59

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ This was first published on https://github.com/evandrocoan/InteractiveGraphicSys
44

55
To use this, just build the `debugger.hpp` and `debugger.cpp` with `-DTINYFORMAT_FORMATTER_DEBUGGER_LEVEL=127+4096` and linking `debugger.cpp` with your project files, while including the `debugger.h` file headers where you would like to use it.
66
```
7-
$ g++ -o main -g -ggdb debugger.cpp test_debugger.cpp -DTINYFORMAT_FORMATTER_DEBUGGER_LEVEL=127 && ./main
8-
$ g++ -o main -g -ggdb debugger.cpp test_debugger.cpp -DTINYFORMAT_FORMATTER_DEBUGGER_LEVEL=127 --std=c++98 && ./main
9-
$ g++ -o main -g -ggdb debugger.cpp test_debugger.cpp -DTINYFORMAT_FORMATTER_DEBUGGER_LEVEL=127 --std=c++11 && ./main
7+
$ g++ -o main.exe -g -ggdb debugger.cpp test_debugger.cpp -DTINYFORMAT_FORMATTER_DEBUGGER_LEVEL=127 && ./main.exe
8+
$ g++ -o main.exe -g -ggdb debugger.cpp test_debugger.cpp -DTINYFORMAT_FORMATTER_DEBUGGER_LEVEL=127 --std=c++98 && ./main.exe
9+
$ g++ -o main.exe -g -ggdb debugger.cpp test_debugger.cpp -DTINYFORMAT_FORMATTER_DEBUGGER_LEVEL=127 --std=c++11 && ./main.exe
1010
```
1111

1212
**test_debugger.cpp** Output result:

test_debugger.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
#include "debugger.hpp"
2626
#include <stdio.h>
2727

28+
// $ g++ -o main.exe -g -ggdb debugger.cpp test_debugger.cpp -DTINYFORMAT_FORMATTER_DEBUGGER_LEVEL=127 && ./main.exe
29+
// $ g++ -o main.exe -g -ggdb debugger.cpp test_debugger.cpp -DTINYFORMAT_FORMATTER_DEBUGGER_LEVEL=127 --std=c++98 && ./main.exe
30+
// $ g++ -o main.exe -g -ggdb debugger.cpp test_debugger.cpp -DTINYFORMAT_FORMATTER_DEBUGGER_LEVEL=127 --std=c++11 && ./main.exe
2831
int main(int argc, char const *argv[])
2932
{
3033
fprintf( stderr, "First test\n" );

0 commit comments

Comments
 (0)