summaryrefslogtreecommitdiffstatshomepage
path: root/bare-arm
Commit message (Collapse)AuthorAge
...
* bare-arm: Enable link map file.Paul Sokolovsky2014-06-27
| | | | | This port supposed to be demo of uPy minimality, so let people behold it in details.
* bare-arm, stmhal, teensy: Duplicate -nostdlib to CFLAGSSven Wegener2014-06-18
| | | | | | | | | As we are building with -nostdlib gcc features like the stack protector will fail linking, because the failure handlers are in gcc's internal libs. Such features are implicitly disabled during compilation when -nostdlib is used in CFLAGS too. Signed-off-by: Sven Wegener <sven.wegener@stealer.net>
* bare-arm, stmhal: Fix --nostdlib to -nostdlibSven Wegener2014-06-18
| | | | | | | -nostdlib is the correct option, gcc recognizes the double dash version when in link-only mode, but not when compiling. Signed-off-by: Sven Wegener <sven.wegener@stealer.net>
* Provide definition of alloca() in mpconfigport.h.Damien George2014-06-08
|
* bare-arm: Disable slice and set.Damien George2014-06-01
|
* Rename bultins config variables to MICROPY_PY_BUILTINS_*.Damien George2014-06-01
| | | | | | | | | | This renames: MICROPY_PY_FROZENSET -> MICROPY_PY_BUILTINS_FROZENSET MICROPY_PY_PROPERTY -> MICROPY_PY_BUILTINS_PROPERTY MICROPY_PY_SLICE -> MICROPY_PY_BUILTINS_SLICE MICROPY_ENABLE_FLOAT -> MICROPY_PY_BUILTINS_FLOAT See issue #35 for discussion.
* Rename configuration variables controling Python features.Damien George2014-05-24
| | | | Now of the form MICROPY_PY_*. See issue #35.
* Tidy up some configuration options.Damien George2014-05-21
| | | | | | | | | | MP_ALLOC_* -> MICROPY_ALLOC_* MICROPY_PATH_MAX -> MICROPY_ALLOC_PATH_MAX MICROPY_ENABLE_REPL_HELPERS -> MICROPY_HELPER_REPL MICROPY_ENABLE_LEXER_UNIX -> MICROPY_HELPER_LEXER_UNIX MICROPY_EXTRA_* -> MICROPY_PORT_* See issue #35.
* bare-arm: Change output file from flash.elf to firmware.elf.Damien George2014-05-10
|
* bare-arm, qemu-arm: Make "mpconfig.h" be first included, as other headers ↵Paul Sokolovsky2014-05-02
| | | | depend on it.
* bare-arm: Disable more stuff to reduce binary size.Damien George2014-04-26
|
* build: Simplify build directory layout by putting all headers in genhdr.Damien George2014-04-17
| | | | | Any generated headers go in $(BUILD)/genhdr/, and are #included as 'genhdr/xxx.h'.
* build directory can now be renamedAndrew Scheller2014-04-16
| | | | | | | | | The autogenerated header files have been moved about, and an extra include dir has been added, which means you can give a custom BUILD=newbuilddir option to make, and everything "just works" Also tidied up the way the different Makefiles build their include- directory flags
* bare-arm/unix-cpy: Minor changes.Damien George2014-04-13
|
* Add 'bare-arm' port: the bare minimum to get it running on an ARM MCU.Damien George2014-04-12