mirror of https://github.com/svaarala/duktape.git
Sami Vaarala
7 years ago
16 changed files with 9 additions and 56 deletions
@ -1,6 +1,3 @@ |
|||
#define DUK_USE_ARCH_STRING "arm32" |
|||
/* Byte order varies, so rely on autodetect. */ |
|||
#if !defined(DUK_USE_ALIGN_BY) |
|||
#define DUK_USE_ALIGN_BY 4 |
|||
#endif |
|||
#define DUK_USE_PACKED_TVAL |
|||
|
@ -1,6 +1,3 @@ |
|||
#define DUK_USE_ARCH_STRING "arm64" |
|||
/* Byte order varies, so rely on autodetect. */ |
|||
#if !defined(DUK_USE_ALIGN_BY) |
|||
#define DUK_USE_ALIGN_BY 8 |
|||
#endif |
|||
#undef DUK_USE_PACKED_TVAL |
|||
|
@ -1,6 +1,3 @@ |
|||
#define DUK_USE_ARCH_STRING "mips32" |
|||
/* MIPS byte order varies so rely on autodetection. */ |
|||
#if !defined(DUK_USE_ALIGN_BY) |
|||
#define DUK_USE_ALIGN_BY 8 |
|||
#endif |
|||
#define DUK_USE_PACKED_TVAL |
|||
|
@ -1,6 +1,3 @@ |
|||
#define DUK_USE_ARCH_STRING "mips64" |
|||
/* MIPS byte order varies so rely on autodetection. */ |
|||
#if !defined(DUK_USE_ALIGN_BY) |
|||
#define DUK_USE_ALIGN_BY 8 |
|||
#endif |
|||
#undef DUK_USE_PACKED_TVAL |
|||
|
@ -1,6 +1,3 @@ |
|||
#define DUK_USE_ARCH_STRING "sparc32" |
|||
/* SPARC byte order varies so rely on autodetection. */ |
|||
#if !defined(DUK_USE_ALIGN_BY) |
|||
#define DUK_USE_ALIGN_BY 8 |
|||
#endif |
|||
#define DUK_USE_PACKED_TVAL |
|||
|
@ -1,6 +1,3 @@ |
|||
#define DUK_USE_ARCH_STRING "sparc64" |
|||
/* SPARC byte order varies so rely on autodetection. */ |
|||
#if !defined(DUK_USE_ALIGN_BY) |
|||
#define DUK_USE_ALIGN_BY 8 |
|||
#endif |
|||
#undef DUK_USE_PACKED_TVAL |
|||
|
@ -1,9 +1,3 @@ |
|||
#define DUK_USE_ARCH_STRING "sh" |
|||
/* Byte order varies, rely on autodetection. */ |
|||
/* Based on 'make checkalign' there are no alignment requirements on
|
|||
* Linux SH4, but align by 4 is probably a good basic default. |
|||
*/ |
|||
#if !defined(DUK_USE_ALIGN_BY) |
|||
#define DUK_USE_ALIGN_BY 4 |
|||
#endif |
|||
#define DUK_USE_PACKED_TVAL |
|||
|
Loading…
Reference in new issue