Skip to content

Commit

Permalink
Merge pull request #1561 from sylvestre/gdb
Browse files Browse the repository at this point in the history
enh(readme): explain how to debug with gdb
  • Loading branch information
sylvestre committed Jul 15, 2020
2 parents 1fb2e89 + 2a9b47e commit cf1f3b0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,13 @@ If you would prefer to test a select few utilities:
$ cargo test --features "chmod mv tail" --no-default-features
```

To debug:
```bash
$ gdb --args target/debug/coreutils ls
(gdb) b ls.rs:79
(gdb) run
```

### GNU Make ###

To simply test all available utilities:
Expand Down

0 comments on commit cf1f3b0

Please sign in to comment.