Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ src
```

You normally run the `.dbg` file under gdb. If you need to debug the
`` file itself, then you can load the debug symbols independently as
executable itself, then you can load the debug symbols independently as

```sh
gdb foo -ex 'add-symbol-file foo.dbg 0x401000'
Expand Down
4 changes: 2 additions & 2 deletions examples/pyapp/BUILD.mk
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#
# NOTES
#
# If you enjoy this tutorial, let us know jtunney@gmail. If
# If you enjoy this tutorial, let us know jtunney@gmail.com. If
# you're building something cool, then we can we can add you to
# our .gitowners file which grants you commit access so you can
# indepnedently maintain your package, as part of the mono-repo
Expand Down Expand Up @@ -98,7 +98,7 @@ o/$(MODE)/examples/pyapp/pyapp.dbg: \
$(APE_NO_MODIFY_SELF)
@$(COMPILE) -ALINK.ape $(LINK) $(LINKARGS) -o $@

# # Unwrap the APE binary, that's embedded within the linked file
# # Unwrap the APE binary, that's embedded within the linked file
# # NOTE: This line can be commented out, since it's in build/rules.mk
# o/$(MODE)/examples/pyapp/pyapp: \
# o/$(MODE)/examples/pyapp/pyapp.dbg
Expand Down
4 changes: 2 additions & 2 deletions examples/pylife/BUILD.mk
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#
# NOTES
#
# If you enjoy this tutorial, let us know jtunney@gmail. If
# If you enjoy this tutorial, let us know jtunney@gmail.com. If
# you're building something cool, then we can we can add you to
# our .gitowners file which grants you commit access so you can
# indepnedently maintain your package, as part of the mono-repo
Expand Down Expand Up @@ -98,7 +98,7 @@ o/$(MODE)/examples/pylife/pylife.dbg: \
$(APE_NO_MODIFY_SELF)
@$(COMPILE) -ALINK.ape $(LINK) $(LINKARGS) -o $@

# # Unwrap the APE binary, that's embedded within the linked file
# # Unwrap the APE binary, that's embedded within the linked file
# # NOTE: This line can be commented out, since it's in build/rules.mk
# o/$(MODE)/examples/pylife/pylife: \
# o/$(MODE)/examples/pylife/pylife.dbg
Expand Down
Loading