Adding ARM to list of non-shared binary platforms
By default only the i386 platform is supported for non-shared binaries. Here we add ARM to the list. Which means that we will have to port to ARM the implementation of the i386 architecture.
This commit is contained in:
parent
9c1ea6e8c8
commit
b4d54aa67d
|
@ -980,7 +980,7 @@ void gtm_trigger_cleanup(gv_trigger_t *trigdsc)
|
|||
*/
|
||||
free(rtnhdr);
|
||||
# else
|
||||
# if (!defined(__linux__) && !defined(__CYGWIN__)) || !defined(__i386) || !defined(COMP_GTA)
|
||||
# if (!defined(__linux__) && !defined(__CYGWIN__)) || !defined(__i386) || !defined(COMP_GTA) || !defined(__arm__)
|
||||
# error Unsupported NON-USHBIN platform
|
||||
# endif
|
||||
/* For a non-shared binary platform we need to get an approximate addr range for stp_move. This is not
|
||||
|
|
Loading…
Reference in New Issue