diff options
author | Damien George <damien.p.george@gmail.com> | 2016-03-09 15:56:11 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-03-09 15:56:11 +0000 |
commit | 853fb08d0d42cca2087fb5b6ae24278bafd6a503 (patch) | |
tree | 88ef8a7b6bdd927a0929946ba6c799302f43c861 /mpy-cross | |
parent | 07554486eeb73665b1bf61ee9af32e4a6e7e458a (diff) | |
download | micropython-853fb08d0d42cca2087fb5b6ae24278bafd6a503.tar.gz micropython-853fb08d0d42cca2087fb5b6ae24278bafd6a503.zip |
mpy-cross: Remove setting of MICROPY_FORCE_32BIT=1 from Makefile.
Building in 32-bit mode was only to reduce binary size on 64-bit machines
and is otherwise not needed. Having it forced to 32-bit meant an
unnecessary dependency on 32-bit libraries that is now removed.
Diffstat (limited to 'mpy-cross')
-rw-r--r-- | mpy-cross/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mpy-cross/Makefile b/mpy-cross/Makefile index 0ad043f004..da4d4646a7 100644 --- a/mpy-cross/Makefile +++ b/mpy-cross/Makefile @@ -1,5 +1,3 @@ -MICROPY_FORCE_32BIT = 1 - include ../py/mkenv.mk # define main target |