From 062fac1d43d42b35e0ecdaaec124c29b65db7c68 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Sat, 25 Feb 2017 12:19:33 +0100 Subject: atmel-samd: Use link time optimization to reduce code size of builds which share space with the file system. "Express" builds with SPI flash crash the compiler for some reason so its currently disabled for them. --- shared-bindings/time/__init__.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shared-bindings/time') diff --git a/shared-bindings/time/__init__.c b/shared-bindings/time/__init__.c index b258b3bbd..8ad05f16b 100644 --- a/shared-bindings/time/__init__.c +++ b/shared-bindings/time/__init__.c @@ -139,7 +139,7 @@ STATIC const mp_map_elem_t time_module_globals_table[] = { { MP_OBJ_NEW_QSTR(MP_QSTR_monotonic), (mp_obj_t)&time_monotonic_obj }, { MP_OBJ_NEW_QSTR(MP_QSTR_sleep), (mp_obj_t)&time_sleep_obj }, #if MICROPY_PY_COLLECTIONS - { MP_OBJ_NEW_QSTR(MP_QSTR_struct_time), (mp_obj_t)&struct_time_type_obj }, + //{ MP_OBJ_NEW_QSTR(MP_QSTR_struct_time), (mp_obj_t)&struct_time_type_obj }, #endif }; -- cgit v1.2.3