diff options
author | Damien George <damien.p.george@gmail.com> | 2014-08-28 23:37:02 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-08-28 23:37:02 +0100 |
commit | 110ba35980d03da2e744a8aadd85d08c0c06a23b (patch) | |
tree | 5969d8ae43712976882c2a8470a7b02e153f0602 /py/py.mk | |
parent | 1ac6faa73218d3049b3e8e8f008dbfdc756628cb (diff) | |
download | micropython-110ba35980d03da2e744a8aadd85d08c0c06a23b.tar.gz micropython-110ba35980d03da2e744a8aadd85d08c0c06a23b.zip |
py: Move native glue code from runtime.c to new file nativeglue.c.v1.3.1
This way, the native glue code is only compiled if native code is
enabled (which makes complete sense; thanks to Paul Sokolovsky for
the idea).
Should fix issue #834.
Diffstat (limited to 'py/py.mk')
-rw-r--r-- | py/py.mk | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -45,6 +45,7 @@ PY_O_BASENAME = \ parsenum.o \ emitglue.o \ runtime.o \ + nativeglue.o \ stackctrl.o \ argcheck.o \ map.o \ |