Implementing syscall invocation sequence for ARMv7 architecture.

Removing dependencies to third-party libc routine implementations.
Introducing __TARGET_HOST define for host (non-MCU) builds.
This commit is contained in:
Ruben Ayrapetyan
2014-10-16 18:36:55 +04:00
parent 90789453ba
commit 9c3c835a7e
11 changed files with 156 additions and 213 deletions
+2 -2
View File
@@ -181,8 +181,8 @@ extern void __noreturn jerry_exit (jerry_status_t code);
/**
* Enable --show-opcodes key.
*/
#if defined (__TARGET_HOST_x64) && !defined (JERRY_NDEBUG)
#define JERRY_ENABLE_PP
#if defined (__TARGET_HOST) && !defined (JERRY_NDEBUG)
# define JERRY_ENABLE_PP
#endif
#endif /* !JERRY_GLOBALS_H */