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.
9 lines
221 B
9 lines
221 B
/* PowerPC */
|
|
#if defined(__powerpc) || defined(__powerpc__) || defined(__PPC__)
|
|
#define DUK_F_PPC
|
|
#if defined(__PPC64__) || defined(__LP64__) || defined(_LP64)
|
|
#define DUK_F_PPC64
|
|
#else
|
|
#define DUK_F_PPC32
|
|
#endif
|
|
#endif
|
|
|