File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -49,19 +49,24 @@ The Unix version
4949
5050The "unix" port requires a standard Unix environment with gcc and GNU make.
5151x86 and x64 architectures are supported (i.e. x86 32- and 64-bit), as well
52- as ARMv7. Porting to other architectures require writing some assembly code
53- for the exception handling.
52+ as ARM and MIPS. Making full-featured port to another architecture requires
53+ writing some assembly code for the exception handling and garbage collection.
54+ Alternatively, fallback implementation based on setjmp/longjmp can be used.
5455
5556To build:
5657
5758 $ cd unix
5859 $ make
5960
60- Then to test it:
61+ Then to give it a try :
6162
6263 $ ./micropython
6364 >>> list(5 * x + y for x in range(10) for y in [4, 2, 1])
6465
66+ Run complete testsuite:
67+
68+ $ make test
69+
6570Debian/Ubuntu/Mint derivative Linux distros will require build-essentials and
6671libreadline-dev packages installed. To build FFI (Foreign Function Interface)
6772module, libffi-dev and pkg-config packages are required. If you have problems
You can’t perform that action at this time.
0 commit comments