Fix #6135 - arm64 can hwstep

This commit is contained in:
pancake 2016-11-06 21:52:47 +01:00
parent 03028730f0
commit 7269a29be6
2 changed files with 7 additions and 2 deletions

View File

@ -1579,10 +1579,10 @@ struct r_debug_plugin_t r_debug_plugin_native = {
#else
.canstep = 1, // XXX it's 1 on some platforms...
#endif
#elif __aarch64__
#elif __aarch64__ || __arm64__
.bits = R_SYS_BITS_16 | R_SYS_BITS_32 | R_SYS_BITS_64,
.arch = "arm",
.canstep = 0, // XXX it's 1 on some platforms...
.canstep = 1,
#elif __arm__
.bits = R_SYS_BITS_16 | R_SYS_BITS_32 | R_SYS_BITS_64,
.arch = "arm",

View File

@ -0,0 +1,5 @@
{
"previousRelease": "0.10.6",
"releaseVersion": "1.0.0",
"codeName": "potato"
}