aboutsummaryrefslogtreecommitdiff
path: root/unix
AgeCommit message (Expand)Author
2014-03-16unix: Clean up includes.xbe
2014-03-08unix: Make usage info reflect actual usage of -X option.Damien George
2014-03-08Implement ROMable modules. Add math module.Damien George
2014-03-04unix: Add to usage print-out telling about -X option.Damien George
2014-03-04unix: Allow to set heap size using "-X heapsize=N" option.Paul Sokolovsky
2014-03-03unix: Add GC support for ARM architecture.Paul Sokolovsky
2014-02-28MICROPY_USE_READLINE: Selects link lib, so should be defined in mpconfigport.mkPaul Sokolovsky
2014-02-26GC: Fix printf formats for debugging; add gc_dump_alloc_table.Damien George
2014-02-22Add arbitrary precision integer support.Damien George
2014-02-16Make DEBUG_printf() a proper function, implementation is port-dependent.Paul Sokolovsky
2014-02-15Implement proper exception type hierarchy.Damien George
2014-02-15Change mp_obj_type_t.name from const char * to qstr.Damien George
2014-02-14Merge pull request #291 from GordonMcGregor/osx_buildDamien George
2014-02-14Merge pull request #288 from pfalcon/port-builtinsDamien George
2014-02-14OS X compatible -map syntax for LDFLAGSGordon McGregor
2014-02-14ffi: Implement ffivar.get()/set() methods.Paul Sokolovsky
2014-02-14Allow ports to define statically builtin functions.Paul Sokolovsky
2014-02-12unix Makefile: Split off optimization options to COPT variable.Paul Sokolovsky
2014-02-11Merge pull request #278 from pfalcon/unix-gcDamien George
2014-02-11More GC debugging improvements.Paul Sokolovsky
2014-02-11unix: Implement garbage collection support.Paul Sokolovsky
2014-02-11Enable link map file generation.Paul Sokolovsky
2014-02-11Rename str_join -> strjoin to make it not clash with objstr's one.Paul Sokolovsky
2014-02-10Fix some int casting that failed on 64 bit architecture.Damien George
2014-02-10socket: Tighten up int-to-str conversion.Paul Sokolovsky
2014-02-10socket: Make sure that symbol definitions are const.Paul Sokolovsky
2014-02-09unix: Implement time.sleep().Paul Sokolovsky
2014-02-08unix microsocket: Add dummy makefile() method.Paul Sokolovsky
2014-02-08ffi: Fix mp_obj_str_get_data() return type.Paul Sokolovsky
2014-02-08io.File, socket types: Add fileno() method.Paul Sokolovsky
2014-02-08Rename "rawsocket" module to "microsocket".Paul Sokolovsky
2014-02-08Make mp_obj_str_get_data return char* instead of byte*.Damien George
2014-02-06Implement fixed buffer vstrs; use them for import path.Damien George
2014-02-05Search paths properly on import and execute __init__.py if it exists.Damien George
2014-02-05Remove older import helpers, no longer used.Paul Sokolovsky
2014-02-05unix: Be sure to add current/base dir of a script to sys.path.Paul Sokolovsky
2014-02-05unix: Initialize sys.path from MICROPYPATH environment variable.Paul Sokolovsky
2014-02-04Use qstr id to create sys module.Paul Sokolovsky
2014-02-02unix time.clock(): Actually return float value.Paul Sokolovsky
2014-02-02unix: Add basic time module (with time() and clock() functions).Paul Sokolovsky
2014-02-01unix: libffi include path now found using pkg-config.Damien George
2014-02-01Add mpconfigport.mk file to configure which modules to include into build.Paul Sokolovsky
2014-01-29py: Add compile option to enable/disable source line numbers.Damien George
2014-01-29Add qstr_info() function and bindings for unix port.Damien George
2014-01-28unix: Fix compile warnings for ffi module on 64-bit machine.Damien George
2014-01-29unix: Initial implementation of FFI module.Paul Sokolovsky
2014-01-26Change -Og to -O0 in unix-cpy/Makefile; cast to small int in socket.c.Damien George
2014-01-26Merge pull request #226 from pfalcon/make-debugDamien George
2014-01-26unix socket: Add setsockopt() method.Paul Sokolovsky
2014-01-26unix socket: Add few more socket constants.Paul Sokolovsky