diff options
author | Damien George <damien.p.george@gmail.com> | 2019-05-02 09:59:21 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-05-07 13:54:20 +1000 |
commit | 7e90e22ea52665e38138d1e704d5e527439b663c (patch) | |
tree | 37d16b07a80c3326759c63c27af485ef65ed7cc6 /py/persistentcode.h | |
parent | 6323cbda4fd82f2396a19e18a224a2579a392303 (diff) | |
download | micropython-7e90e22ea52665e38138d1e704d5e527439b663c.tar.gz micropython-7e90e22ea52665e38138d1e704d5e527439b663c.zip |
mpy-cross: Add --version command line option to print version info.
Prints something like:
MicroPython v1.10-304-g8031b7a25 on 2019-05-02; mpy-cross emitting mpy v4
Diffstat (limited to 'py/persistentcode.h')
-rw-r--r-- | py/persistentcode.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/persistentcode.h b/py/persistentcode.h index b27c3de2f0..2074c64fe2 100644 --- a/py/persistentcode.h +++ b/py/persistentcode.h @@ -30,6 +30,9 @@ #include "py/reader.h" #include "py/emitglue.h" +// The current version of .mpy files +#define MPY_VERSION 4 + enum { MP_NATIVE_ARCH_NONE = 0, MP_NATIVE_ARCH_X86, |