Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

no app-*.o files were found in my target/debug... folder. I am on ru… #39

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
8 changes: 7 additions & 1 deletion src/smallest-no-std.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,15 @@ Before linking the crate does contain the panicking symbol.
``` console
$ cargo rustc --target thumbv7m-none-eabi -- --emit=obj

$ cargo nm -- target/thumbv7m-none-eabi/debug/deps/app-*.o | grep '[0-9]* [^n] '
$ cargo nm -- target/thumbv7m-none-eabi/debug/deps/app-* | grep '[0-9]* [^n] '
```

Depending on how many times you have built, you may see the following 1 or more times:
``` console
00000004 R RESET_VECTOR
00000008 T Reset
```
Note: as opposed to:
``` text
{{#include ../ci/smallest-no-std/app.o.nm}}
```
Expand Down