blob: 850d05524b560666ed7c3fcb5eb6c5926abdf6ac [file] [log] [blame]
Damien George04b91472014-05-03 23:27:38 +01001/*
2 * This file is part of the Micro Python project, http://micropython.org/
3 *
4 * The MIT License (MIT)
5 *
6 * Copyright (c) 2013, 2014 Damien P. George
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 * THE SOFTWARE.
25 */
26
Paul Sokolovskyb372bfc2014-01-03 17:15:53 +020027// This file contains default configuration settings for MicroPython.
28// You can override any of these options using mpconfigport.h file located
29// in a directory of your port.
30
Damien George8340c482014-06-12 19:50:17 +010031#include <mpconfigport.h>
Paul Sokolovskyb372bfc2014-01-03 17:15:53 +020032
Damien George136f6752014-01-07 14:54:15 +000033// Any options not explicitly set in mpconfigport.h will get default
34// values below.
35
36/*****************************************************************************/
Damien George66e18f02014-05-05 13:19:03 +010037/* Memory allocation policy */
38
Damien Georgee1199ec2014-05-10 17:48:01 +010039// Initial amount for lexer indentation level
Damien George58ebde42014-05-21 20:32:59 +010040#ifndef MICROPY_ALLOC_LEXER_INDENT_INIT
41#define MICROPY_ALLOC_LEXER_INDENT_INIT (10)
Damien Georgee1199ec2014-05-10 17:48:01 +010042#endif
43
44// Increment for lexer indentation level
Damien George58ebde42014-05-21 20:32:59 +010045#ifndef MICROPY_ALLOC_LEXEL_INDENT_INC
46#define MICROPY_ALLOC_LEXEL_INDENT_INC (8)
Damien Georgee1199ec2014-05-10 17:48:01 +010047#endif
48
Damien George66e18f02014-05-05 13:19:03 +010049// Initial amount for parse rule stack
Damien George58ebde42014-05-21 20:32:59 +010050#ifndef MICROPY_ALLOC_PARSE_RULE_INIT
51#define MICROPY_ALLOC_PARSE_RULE_INIT (64)
Damien George66e18f02014-05-05 13:19:03 +010052#endif
53
54// Increment for parse rule stack
Damien George58ebde42014-05-21 20:32:59 +010055#ifndef MICROPY_ALLOC_PARSE_RULE_INC
56#define MICROPY_ALLOC_PARSE_RULE_INC (16)
Damien George66e18f02014-05-05 13:19:03 +010057#endif
58
59// Initial amount for parse result stack
Damien George58ebde42014-05-21 20:32:59 +010060#ifndef MICROPY_ALLOC_PARSE_RESULT_INIT
61#define MICROPY_ALLOC_PARSE_RESULT_INIT (32)
Damien George66e18f02014-05-05 13:19:03 +010062#endif
63
64// Increment for parse result stack
Damien George58ebde42014-05-21 20:32:59 +010065#ifndef MICROPY_ALLOC_PARSE_RESULT_INC
66#define MICROPY_ALLOC_PARSE_RESULT_INC (16)
Damien George66e18f02014-05-05 13:19:03 +010067#endif
68
Damien George5042bce2014-05-25 22:06:06 +010069// Strings this length or less will be interned by the parser
70#ifndef MICROPY_ALLOC_PARSE_INTERN_STRING_LEN
71#define MICROPY_ALLOC_PARSE_INTERN_STRING_LEN (10)
72#endif
73
Damien George66e18f02014-05-05 13:19:03 +010074// Initial amount for ids in a scope
Damien George58ebde42014-05-21 20:32:59 +010075#ifndef MICROPY_ALLOC_SCOPE_ID_INIT
76#define MICROPY_ALLOC_SCOPE_ID_INIT (4)
Damien George66e18f02014-05-05 13:19:03 +010077#endif
78
79// Increment for ids in a scope
Damien George58ebde42014-05-21 20:32:59 +010080#ifndef MICROPY_ALLOC_SCOPE_ID_INC
81#define MICROPY_ALLOC_SCOPE_ID_INC (6)
82#endif
83
84// Maximum length of a path in the filesystem
85// So we can allocate a buffer on the stack for path manipulation in import
86#ifndef MICROPY_ALLOC_PATH_MAX
87#define MICROPY_ALLOC_PATH_MAX (512)
Damien George66e18f02014-05-05 13:19:03 +010088#endif
89
90/*****************************************************************************/
Damien George136f6752014-01-07 14:54:15 +000091/* Micro Python emitters */
92
93// Whether to emit CPython byte codes (for debugging/testing)
94// Enabling this overrides all other emitters
95#ifndef MICROPY_EMIT_CPYTHON
96#define MICROPY_EMIT_CPYTHON (0)
97#endif
98
99// Whether to emit x64 native code
100#ifndef MICROPY_EMIT_X64
101#define MICROPY_EMIT_X64 (0)
102#endif
103
104// Whether to emit thumb native code
105#ifndef MICROPY_EMIT_THUMB
106#define MICROPY_EMIT_THUMB (0)
107#endif
108
109// Whether to enable the thumb inline assembler
110#ifndef MICROPY_EMIT_INLINE_THUMB
111#define MICROPY_EMIT_INLINE_THUMB (0)
112#endif
113
Damien George2ac4af62014-08-15 16:45:41 +0100114// Convenience definition for whether any native emitter is enabled
115#define MICROPY_EMIT_NATIVE (MICROPY_EMIT_X64 || MICROPY_EMIT_THUMB)
116
Damien George136f6752014-01-07 14:54:15 +0000117/*****************************************************************************/
Damien George58ebde42014-05-21 20:32:59 +0100118/* Compiler configuration */
119
120// Whether to enable constant optimisation; id = const(value)
121#ifndef MICROPY_COMP_CONST
122#define MICROPY_COMP_CONST (1)
123#endif
124
125/*****************************************************************************/
Damien George136f6752014-01-07 14:54:15 +0000126/* Internal debugging stuff */
127
128// Whether to collect memory allocation stats
129#ifndef MICROPY_MEM_STATS
130#define MICROPY_MEM_STATS (0)
131#endif
132
Damien Georgecbd2f742014-01-19 11:48:48 +0000133// Whether to build functions that print debugging info:
Damien Georgec5966122014-02-15 16:10:44 +0000134// mp_token_show
Damien George3417bc22014-05-10 10:36:38 +0100135// mp_bytecode_print
Damien Georgecbd2f742014-01-19 11:48:48 +0000136// mp_parse_node_print
137#ifndef MICROPY_DEBUG_PRINTERS
138#define MICROPY_DEBUG_PRINTERS (0)
Damien Georged3ebe482014-01-07 15:20:33 +0000139#endif
140
Damien George136f6752014-01-07 14:54:15 +0000141/*****************************************************************************/
Damien Georgeee3fd462014-05-24 23:03:12 +0100142/* Optimisations */
143
144// Whether to use computed gotos in the VM, or a switch
145// Computed gotos are roughly 10% faster, and increase VM code size by a little
146#ifndef MICROPY_OPT_COMPUTED_GOTO
147#define MICROPY_OPT_COMPUTED_GOTO (0)
148#endif
149
150/*****************************************************************************/
151/* Python internal features */
Damien George136f6752014-01-07 14:54:15 +0000152
Damien Georged3ebe482014-01-07 15:20:33 +0000153// Whether to include the garbage collector
154#ifndef MICROPY_ENABLE_GC
155#define MICROPY_ENABLE_GC (0)
156#endif
157
Damien George12bab722014-04-05 20:35:48 +0100158// Whether to enable finalisers in the garbage collector (ie call __del__)
159#ifndef MICROPY_ENABLE_GC_FINALISER
160#define MICROPY_ENABLE_GC_FINALISER (0)
161#endif
162
Paul Sokolovsky23668692014-06-25 03:03:34 +0300163// Whether to check C stack usage. C stack used for calling Python functions,
164// etc. Not checking means segfault on overflow.
165#ifndef MICROPY_STACK_CHECK
166#define MICROPY_STACK_CHECK (1)
167#endif
168
Dave Hylands5b7fd202014-07-01 23:46:53 -0700169// Whether to have an emergency exception buffer
170#ifndef MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF
171#define MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF (0)
172#endif
173#if MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF
174# ifndef MICROPY_EMERGENCY_EXCEPTION_BUF_SIZE
175# define MICROPY_EMERGENCY_EXCEPTION_BUF_SIZE (0) // 0 - implies dynamic allocation
176# endif
177#endif
178
Damien George136f6752014-01-07 14:54:15 +0000179// Whether to include REPL helper function
Damien George58ebde42014-05-21 20:32:59 +0100180#ifndef MICROPY_HELPER_REPL
181#define MICROPY_HELPER_REPL (0)
Damien George136f6752014-01-07 14:54:15 +0000182#endif
183
Damien Georged3ebe482014-01-07 15:20:33 +0000184// Whether to include lexer helper function for unix
Damien George58ebde42014-05-21 20:32:59 +0100185#ifndef MICROPY_HELPER_LEXER_UNIX
186#define MICROPY_HELPER_LEXER_UNIX (0)
Damien Georged3ebe482014-01-07 15:20:33 +0000187#endif
188
Paul Sokolovsky48b35722014-01-12 17:30:48 +0200189// Long int implementation
190#define MICROPY_LONGINT_IMPL_NONE (0)
191#define MICROPY_LONGINT_IMPL_LONGLONG (1)
Damien George438c88d2014-02-22 19:25:23 +0000192#define MICROPY_LONGINT_IMPL_MPZ (2)
Paul Sokolovsky48b35722014-01-12 17:30:48 +0200193
194#ifndef MICROPY_LONGINT_IMPL
195#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_NONE)
196#endif
197
198#if MICROPY_LONGINT_IMPL == MICROPY_LONGINT_IMPL_LONGLONG
199typedef long long mp_longint_impl_t;
200#endif
201
Damien George62ad1892014-01-29 21:51:51 +0000202// Whether to include information in the byte code to determine source
203// line number (increases RAM usage, but doesn't slow byte code execution)
204#ifndef MICROPY_ENABLE_SOURCE_LINE
205#define MICROPY_ENABLE_SOURCE_LINE (0)
206#endif
207
Damien George1463c1f2014-04-25 23:52:57 +0100208// Whether to include doc strings (increases RAM usage)
209#ifndef MICROPY_ENABLE_DOC_STRING
210#define MICROPY_ENABLE_DOC_STRING (0)
211#endif
212
Paul Sokolovsky1f85d622014-05-01 01:35:38 +0300213// Exception messages are short static strings (TODO)
214#define MICROPY_ERROR_REPORTING_TERSE (1)
215// Exception messages provide basic error details
216#define MICROPY_ERROR_REPORTING_NORMAL (2)
217// Exception messages provide full info, e.g. object names
218#define MICROPY_ERROR_REPORTING_DETAILED (3)
219
220#ifndef MICROPY_ERROR_REPORTING
221#define MICROPY_ERROR_REPORTING (MICROPY_ERROR_REPORTING_NORMAL)
222#endif
223
Damien George0c36da02014-03-08 15:24:39 +0000224// Float and complex implementation
225#define MICROPY_FLOAT_IMPL_NONE (0)
226#define MICROPY_FLOAT_IMPL_FLOAT (1)
227#define MICROPY_FLOAT_IMPL_DOUBLE (2)
228
229#ifndef MICROPY_FLOAT_IMPL
230#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_NONE)
231#endif
232
233#if MICROPY_FLOAT_IMPL == MICROPY_FLOAT_IMPL_FLOAT
Damien Georgefb510b32014-06-01 13:32:54 +0100234#define MICROPY_PY_BUILTINS_FLOAT (1)
Damien George0c36da02014-03-08 15:24:39 +0000235#define MICROPY_FLOAT_C_FUN(fun) fun##f
236typedef float mp_float_t;
237#elif MICROPY_FLOAT_IMPL == MICROPY_FLOAT_IMPL_DOUBLE
Damien Georgefb510b32014-06-01 13:32:54 +0100238#define MICROPY_PY_BUILTINS_FLOAT (1)
Damien George0c36da02014-03-08 15:24:39 +0000239#define MICROPY_FLOAT_C_FUN(fun) fun
240typedef double mp_float_t;
241#else
Damien Georgefb510b32014-06-01 13:32:54 +0100242#define MICROPY_PY_BUILTINS_FLOAT (0)
Damien George136f6752014-01-07 14:54:15 +0000243#endif
244
Paul Sokolovsky3b6f7b92014-06-20 01:48:35 +0300245#ifndef MICROPY_PY_BUILTINS_COMPLEX
246#define MICROPY_PY_BUILTINS_COMPLEX (MICROPY_PY_BUILTINS_FLOAT)
247#endif
248
Paul Sokolovskydcac8802014-01-16 19:19:50 +0200249// Enable features which improve CPython compatibility
250// but may lead to more code size/memory usage.
251// TODO: Originally intended as generic category to not
252// add bunch of once-off options. May need refactoring later
253#ifndef MICROPY_CPYTHON_COMPAT
254#define MICROPY_CPYTHON_COMPAT (1)
255#endif
256
Paul Sokolovsky0ef015b2014-05-07 02:23:46 +0300257// Whether POSIX-semantics non-blocking streams are supported
258#ifndef MICROPY_STREAMS_NON_BLOCK
259#define MICROPY_STREAMS_NON_BLOCK (0)
260#endif
261
Damien Georgeee3fd462014-05-24 23:03:12 +0100262/*****************************************************************************/
263/* Fine control over Python builtins, classes, modules, etc */
264
Paul Sokolovsky12bc13e2014-06-13 01:05:19 +0300265// Whether str object is proper unicode
266#ifndef MICROPY_PY_BUILTINS_STR_UNICODE
267#define MICROPY_PY_BUILTINS_STR_UNICODE (0)
Damien George8546ce12014-06-28 10:29:22 +0100268#endif
Damien Georgeb3a50f02014-06-28 10:27:15 +0100269
Paul Sokolovskycb78f862014-06-27 20:39:09 +0300270// Whether to support bytearray object
271#ifndef MICROPY_PY_BUILTINS_BYTEARRAY
272#define MICROPY_PY_BUILTINS_BYTEARRAY (1)
Paul Sokolovsky12bc13e2014-06-13 01:05:19 +0300273#endif
274
Damien George3ebd4d02014-06-01 13:46:47 +0100275// Whether to support set object
276#ifndef MICROPY_PY_BUILTINS_SET
277#define MICROPY_PY_BUILTINS_SET (1)
278#endif
279
Damien Georgefb510b32014-06-01 13:32:54 +0100280// Whether to support slice subscript operators and slice object
281#ifndef MICROPY_PY_BUILTINS_SLICE
282#define MICROPY_PY_BUILTINS_SLICE (1)
Damien Georgeee3fd462014-05-24 23:03:12 +0100283#endif
284
285// Whether to support frozenset object
Damien Georgefb510b32014-06-01 13:32:54 +0100286#ifndef MICROPY_PY_BUILTINS_FROZENSET
287#define MICROPY_PY_BUILTINS_FROZENSET (0)
Damien Georgeee3fd462014-05-24 23:03:12 +0100288#endif
289
Damien Georgefb510b32014-06-01 13:32:54 +0100290// Whether to support property object
291#ifndef MICROPY_PY_BUILTINS_PROPERTY
292#define MICROPY_PY_BUILTINS_PROPERTY (1)
Damien Georgeee3fd462014-05-24 23:03:12 +0100293#endif
294
Paul Sokolovskyd0f5e612014-07-25 11:00:15 +0300295// Whether to set __file__ for imported modules
296#ifndef MICROPY_PY___FILE__
297#define MICROPY_PY___FILE__ (1)
298#endif
299
Paul Sokolovskycb78f862014-06-27 20:39:09 +0300300// Whether to provide "array" module. Note that large chunk of the
301// underlying code is shared with "bytearray" builtin type, so to
302// get real savings, it should be disabled too.
303#ifndef MICROPY_PY_ARRAY
304#define MICROPY_PY_ARRAY (1)
305#endif
306
Damien Georgeee3fd462014-05-24 23:03:12 +0100307// Whether to provide "collections" module
308#ifndef MICROPY_PY_COLLECTIONS
309#define MICROPY_PY_COLLECTIONS (1)
310#endif
311
312// Whether to provide "math" module
313#ifndef MICROPY_PY_MATH
314#define MICROPY_PY_MATH (1)
315#endif
316
317// Whether to provide "cmath" module
318#ifndef MICROPY_PY_CMATH
319#define MICROPY_PY_CMATH (0)
320#endif
321
322// Whether to provide "gc" module
323#ifndef MICROPY_PY_GC
324#define MICROPY_PY_GC (1)
325#endif
326
Paul Sokolovsky755a55f2014-06-05 22:48:02 +0300327// Whether to return number of collected objects from gc.collect()
328#ifndef MICROPY_PY_GC_COLLECT_RETVAL
329#define MICROPY_PY_GC_COLLECT_RETVAL (0)
330#endif
331
Damien Georgeee3fd462014-05-24 23:03:12 +0100332// Whether to provide "io" module
333#ifndef MICROPY_PY_IO
334#define MICROPY_PY_IO (1)
335#endif
336
337// Whether to provide "io.FileIO" class
338#ifndef MICROPY_PY_IO_FILEIO
339#define MICROPY_PY_IO_FILEIO (0)
340#endif
341
342// Whether to provide "io.BytesIO" class
343#ifndef MICROPY_PY_IO_BYTESIO
344#define MICROPY_PY_IO_BYTESIO (1)
345#endif
346
347// Whether to provide "struct" module
348#ifndef MICROPY_PY_STRUCT
349#define MICROPY_PY_STRUCT (1)
350#endif
351
352// Whether to provide "sys" module
353#ifndef MICROPY_PY_SYS
354#define MICROPY_PY_SYS (1)
355#endif
356
Paul Sokolovsky4e0eeeb2014-07-03 16:50:11 +0300357// Whether to provide "sys.maxsize" constant
358#ifndef MICROPY_PY_SYS_MAXSIZE
359#define MICROPY_PY_SYS_MAXSIZE (0)
360#endif
361
Damien Georgeee3fd462014-05-24 23:03:12 +0100362// Whether to provide "sys.exit" function
363#ifndef MICROPY_PY_SYS_EXIT
364#define MICROPY_PY_SYS_EXIT (0)
365#endif
366
367// Whether to provide sys.{stdin,stdout,stderr} objects
368#ifndef MICROPY_PY_SYS_STDFILES
369#define MICROPY_PY_SYS_STDFILES (0)
Damien George3bb8bd82014-04-14 21:20:30 +0100370#endif
371
Paul Sokolovsky82158472014-06-28 03:03:47 +0300372
373// Extended modules
Paul Sokolovsky510296f2014-08-08 22:51:40 +0300374
Paul Sokolovsky82158472014-06-28 03:03:47 +0300375#ifndef MICROPY_PY_UCTYPES
376#define MICROPY_PY_UCTYPES (0)
377#endif
378
Paul Sokolovsky510296f2014-08-08 22:51:40 +0300379#ifndef MICROPY_PY_ZLIBD
380#define MICROPY_PY_ZLIBD (0)
381#endif
382
Damien George58ebde42014-05-21 20:32:59 +0100383/*****************************************************************************/
384/* Hooks for a port to add builtins */
385
Damien Georgecaac5422014-03-25 14:18:18 +0000386// Additional builtin function definitions - see builtintables.c:builtin_object_table for format.
Damien George58ebde42014-05-21 20:32:59 +0100387#ifndef MICROPY_PORT_BUILTINS
388#define MICROPY_PORT_BUILTINS
Paul Sokolovsky910843e2014-02-14 12:02:34 +0200389#endif
Damien Georgecaac5422014-03-25 14:18:18 +0000390
391// Additional builtin module definitions - see builtintables.c:builtin_module_table for format.
Damien George58ebde42014-05-21 20:32:59 +0100392#ifndef MICROPY_PORT_BUILTIN_MODULES
393#define MICROPY_PORT_BUILTIN_MODULES
Damien Georgecaac5422014-03-25 14:18:18 +0000394#endif
395
Damien George57e99eb2014-04-10 22:42:11 +0100396// Additional constant definitions for the compiler - see compile.c:mp_constants_table.
Damien George58ebde42014-05-21 20:32:59 +0100397#ifndef MICROPY_PORT_CONSTANTS
398#define MICROPY_PORT_CONSTANTS
Damien George57e99eb2014-04-10 22:42:11 +0100399#endif
400
Damien George136f6752014-01-07 14:54:15 +0000401/*****************************************************************************/
402/* Miscellaneous settings */
403
Dave Hylands5b7fd202014-07-01 23:46:53 -0700404// On embedded platforms, these will typically enable/disable irqs.
405#ifndef MICROPY_BEGIN_ATOMIC_SECTION
406#define MICROPY_BEGIN_ATOMIC_SECTION()
407#endif
408#ifndef MICROPY_END_ATOMIC_SECTION
409#define MICROPY_END_ATOMIC_SECTION()
410#endif
411
Paul Sokolovskyd5df6cd2014-02-12 18:15:40 +0200412// Allow to override static modifier for global objects, e.g. to use with
413// object code analysis tools which don't support static symbols.
414#ifndef STATIC
415#define STATIC static
416#endif
417
Paul Sokolovskyfc5aac82014-01-12 16:10:19 +0200418#define BITS_PER_BYTE (8)
419#define BITS_PER_WORD (BITS_PER_BYTE * BYTES_PER_WORD)
Damien George40f3c022014-07-03 13:25:24 +0100420// mp_int_t value with most significant bit set
421#define WORD_MSBIT_HIGH (((mp_uint_t)1) << (BYTES_PER_WORD * 8 - 1))
Paul Sokolovskyfc5aac82014-01-12 16:10:19 +0200422
Paul Sokolovsky2da81fa2014-04-11 03:44:00 +0300423#if !defined(MP_ENDIANNESS_LITTLE) && !defined(MP_ENDIANNESS_BIG)
424// Just because most archs are such?
425#define MP_ENDIANNESS_LITTLE (1)
426#endif
Andrew Schellercc837372014-04-14 02:39:56 +0100427// Ensure we don't accidentally set both endiannesses
428#if MP_ENDIANNESS_BIG
429#define MP_ENDIANNESS_LITTLE (0)
430#endif
Paul Sokolovsky2da81fa2014-04-11 03:44:00 +0300431
Damien George40f3c022014-07-03 13:25:24 +0100432// printf format spec to use for mp_int_t and friends
Damien George136f6752014-01-07 14:54:15 +0000433#ifndef INT_FMT
Paul Sokolovskyc90c0f62014-01-04 01:57:00 +0200434#ifdef __LP64__
Damien George40f3c022014-07-03 13:25:24 +0100435// Archs where mp_int_t == long, long != int
Paul Sokolovskyc90c0f62014-01-04 01:57:00 +0200436#define UINT_FMT "%lu"
437#define INT_FMT "%ld"
438#else
Damien George40f3c022014-07-03 13:25:24 +0100439// Archs where mp_int_t == int
Paul Sokolovskyc90c0f62014-01-04 01:57:00 +0200440#define UINT_FMT "%u"
441#define INT_FMT "%d"
442#endif
443#endif //INT_FMT
Paul Sokolovskye9085912014-04-30 05:35:18 +0300444
445// Modifier for function which doesn't return
stijn01d6be42014-05-05 12:18:27 +0200446#ifndef NORETURN
Paul Sokolovskye9085912014-04-30 05:35:18 +0300447#define NORETURN __attribute__((noreturn))
stijn01d6be42014-05-05 12:18:27 +0200448#endif
mux5c8db482014-06-21 17:24:55 +0200449
450// Modifier for weak functions
451#ifndef MP_WEAK
452#define MP_WEAK __attribute__((weak))
453#endif