diff options
| author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-06-02 01:32:07 +0300 |
|---|---|---|
| committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-06-02 01:32:07 +0300 |
| commit | 9456732b86704adeefb4ef67612a2a9299c92677 (patch) | |
| tree | 0fa419523d6b52494273175f515953c81d008b13 /unix/mpconfigport_fast.h | |
| parent | 2fc1e643199a97cd38142aaec80547227197db98 (diff) | |
unix: Include upip as fronzen modules inside the standard interpreter.
MicroPython doesn't come with standard library included, so it is important
to be able to easily install needed package in a seamless manner. Bundling
package manager (upip) inside an executable solves this issue.
upip is bundled only with standard executable, not "minimal" or "fast"
builds.
Diffstat (limited to 'unix/mpconfigport_fast.h')
| -rw-r--r-- | unix/mpconfigport_fast.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/unix/mpconfigport_fast.h b/unix/mpconfigport_fast.h index 2dd55e42a..0694b7099 100644 --- a/unix/mpconfigport_fast.h +++ b/unix/mpconfigport_fast.h @@ -33,3 +33,8 @@ // 91 is a magic number proposed by @dpgeorge, which make pystone run ~ at tie // with CPython 3.4. #define MICROPY_MODULE_DICT_SIZE (91) + +// Don't include builtin upip, as this build is again intended just for +// synthetic benchmarking +#undef MICROPY_MODULE_FROZEN +#define MICROPY_MODULE_FROZEN (0) |
