diff options
author | Damien George <damien.p.george@gmail.com> | 2016-06-29 14:25:12 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-06-29 14:25:12 +0100 |
commit | 56845b6aff05a7a6a9aa3b916605eee8184be09b (patch) | |
tree | 8a4032cb3782132f7256e0da2db4ac6e80f69a78 /esp8266 | |
parent | db80c0ed4678f4bacc6c7c9b67cbf26846fc21be (diff) | |
download | micropython-56845b6aff05a7a6a9aa3b916605eee8184be09b.tar.gz micropython-56845b6aff05a7a6a9aa3b916605eee8184be09b.zip |
esp8266/README: Describe how to build mpy-cross.
Diffstat (limited to 'esp8266')
-rw-r--r-- | esp8266/README.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/esp8266/README.md b/esp8266/README.md index 0509a3799b..5965fa4bce 100644 --- a/esp8266/README.md +++ b/esp8266/README.md @@ -39,6 +39,12 @@ $ git submodule update --init See the README in the repository root for more information about external dependencies. +The MicroPython cross-compiler must be built to pre-compile some of the +built-in scripts to bytecode. This can be done using: +```bash +$ make -C mpy-cross +``` + Then, to build MicroPython for the ESP8266, just run: ```bash $ cd esp8266 |