mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
408 B
18 lines
408 B
#undef DUK_USE_BRANCH_HINTS
|
|
|
|
#if defined(DUK_F_CPP)
|
|
#define DUK_USE_COMPILER_STRING "tinyc++"
|
|
#else
|
|
#define DUK_USE_COMPILER_STRING "tinyc"
|
|
#endif
|
|
|
|
/* http://bellard.org/tcc/tcc-doc.html#SEC7 */
|
|
#define DUK_USE_VARIADIC_MACROS
|
|
|
|
#define DUK_USE_UNION_INITIALIZERS
|
|
|
|
/* Most portable, wastes space */
|
|
#define DUK_USE_FLEX_ONESIZE
|
|
|
|
/* Most portable, potentially wastes space */
|
|
#define DUK_USE_PACK_DUMMY_MEMBER
|
|
|