diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-01 10:44:17 -0800 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-01 10:44:17 -0800 |
commit | 6fcaea6ca898ba7dd75ed62d5338852b270cc0de (patch) | |
tree | a480e463632d24256db7a8886346c1c65cf1b1aa /unix/main.c | |
parent | fb083ea986d758c7426fda091c4899f0511aaa8c (diff) | |
parent | ed1239fce60f8cfe710637a5e0591f2b2a64b65d (diff) | |
download | micropython-6fcaea6ca898ba7dd75ed62d5338852b270cc0de.tar.gz micropython-6fcaea6ca898ba7dd75ed62d5338852b270cc0de.zip |
Merge pull request #254 from pfalcon/config-modules
Add mpconfigport.mk file to configure which modules to include into build
Diffstat (limited to 'unix/main.c')
-rw-r--r-- | unix/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/unix/main.c b/unix/main.c index cd45e3be86..5ca8115368 100644 --- a/unix/main.c +++ b/unix/main.c @@ -242,7 +242,9 @@ int main(int argc, char **argv) { file_init(); rawsocket_init(); +#if MICROPY_MOD_FFI ffi_init(); +#endif // Here is some example code to create a class and instance of that class. // First is the Python, then the C code. |