diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-17 09:47:27 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-17 09:47:27 +0000 |
commit | 70c56acafbaef4c997d08a5877e6b66f811730d9 (patch) | |
tree | d9ad5f132221c084dd0e86074b800ec2551b84bf | |
parent | 402dc31aa7447c5825f2bcfc9f0e1b9a77542f17 (diff) | |
parent | c839584222121e60fd8ae1787e08930463d9ae52 (diff) | |
download | micropython-70c56acafbaef4c997d08a5877e6b66f811730d9.tar.gz micropython-70c56acafbaef4c997d08a5877e6b66f811730d9.zip |
Merge pull request #302 from pfalcon/readme-update
Update README to current state of affairs.
-rw-r--r-- | README.md | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -37,8 +37,9 @@ The Unix version ---------------- The "unix" part requires a standard Unix environment with gcc and GNU make. -It works only for 64-bit machines due to a small piece of x86-64 assembler -for the exception handling. +x86 and x64 architectures are supported (i.e. x86 32- and 64-bit). ARM to +be confirmed. Porting to other architectures require writing some assembly +code for the exception handling. To build: @@ -47,11 +48,12 @@ To build: Then to test it: - $ ./py + $ ./micropython >>> list(5 * x + y for x in range(10) for y in [4, 2, 1]) -Ubuntu and Mint derivatives will require build-essentials and libreadline-dev -packages installed. +Debian/Ubuntu/Mint derivative Linux distros will require build-essentials and +libreadline-dev packages installed. To build FFI (Foreign Function Interface) +module (recommended, enable in unix/mpconfigport.mk), libffi-dev is required. The STM version --------------- |