Skip to content

eclipse_pyocd: add link to compatible windows make #935

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

Merged
merged 2 commits into from
Feb 12, 2019
Merged
Changes from 1 commit
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
5 changes: 4 additions & 1 deletion docs/tutorials/debug/eclipse_pyocd.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ Once the project builds, you can configure the debugger. The configuration depen
If the build fails with an error:

1. `make[1]: arm-none-eabi-g++: No such file or directory`, you need to configure Eclipse's PATH (not your OS PATH).
1. `Program "make" not found in PATH`, install [GNU-Make utility](http://gnuwin32.sourceforge.net/packages/make.htm), and configure Eclipse's PATH.
1. `Program "make" not found in PATH`, install GNU-Make utility, version at least 4.0:
- On Windows, compatible version of make is found in [Cygwin](https://www.cygwin.com/) and [MSYS2](https://www.msys2.org/) distrubitions. Install `make` package and add either `C:/cygwin64/bin` or `C:/msys64/usr/bin` to Eclipse PATH.
- On macOS, `make` can be installed as part of [Xcode Command Line Tools](https://developer.apple.com/download/more/).
- On Linux, `make` is provided by the distrubition package manager.

Steps to update Eclipse's PATH:

Expand Down