-
Notifications
You must be signed in to change notification settings - Fork 178
Update vscode.md to instruct Windows users to install GNU Make + inst… #410
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
Conversation
…ructions to build with CLI Fix for #409
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a few questions.
docs/tutorials/debug/vs_code.md
Outdated
@@ -2,6 +2,8 @@ | |||
|
|||
This document explains how to build and debug Arm Mbed OS applications using Visual Studio Code. Before starting, first [configure your local debug toolchain](/docs/v5.6/tools/setting-up-a-local-debug-toolchain.html). | |||
|
|||
If you're using Windows, also install [GNU Make](https://www.gnu.org/software/make/). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not related to windows, correct? Linux and MacOS would also need make
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not completely. Most linux distributions I believe have it installed by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ubuntu does, but base Archlinux does not. Either way, I think it's worth mentioning.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, and Mac does not come with make.
docs/tutorials/debug/vs_code.md
Outdated
|
||
### Building with Mbed CLI | ||
|
||
Visual Studio Code uses `make` to build your application. However, you can also build with Mbed CLI. To do this: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Visual Studio Code uses make
to build your application by default. You can also build with Mbed CLI. To do this:
docs/tutorials/debug/vs_code.md
Outdated
- In `.vscode/tasks.json`, change `args` to: | ||
|
||
``` | ||
"args": ["compile", "--profile=debug"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should also have -t
and -m
specified. Otherwise, it won't work. The exported .mbed
file contains no configuration.
Add commas for consistent treatment of introductory prepositional phrases.
@theotherjimmy @AnotherButler Fixed, squashed and pushed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! Thanks. 👍
Update final list formatting because numbered lists indicate steps that must occur in order, and bulleted lists indicate steps for which order doesn't matter.
…ructions to build with CLI
Fix for #409
@iriark01 @AnotherButler