mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-05 04:56:10 +00:00
Fix #6135 - arm64 can hwstep
This commit is contained in:
parent
03028730f0
commit
7269a29be6
@ -1579,10 +1579,10 @@ struct r_debug_plugin_t r_debug_plugin_native = {
|
|||||||
#else
|
#else
|
||||||
.canstep = 1, // XXX it's 1 on some platforms...
|
.canstep = 1, // XXX it's 1 on some platforms...
|
||||||
#endif
|
#endif
|
||||||
#elif __aarch64__
|
#elif __aarch64__ || __arm64__
|
||||||
.bits = R_SYS_BITS_16 | R_SYS_BITS_32 | R_SYS_BITS_64,
|
.bits = R_SYS_BITS_16 | R_SYS_BITS_32 | R_SYS_BITS_64,
|
||||||
.arch = "arm",
|
.arch = "arm",
|
||||||
.canstep = 0, // XXX it's 1 on some platforms...
|
.canstep = 1,
|
||||||
#elif __arm__
|
#elif __arm__
|
||||||
.bits = R_SYS_BITS_16 | R_SYS_BITS_32 | R_SYS_BITS_64,
|
.bits = R_SYS_BITS_16 | R_SYS_BITS_32 | R_SYS_BITS_64,
|
||||||
.arch = "arm",
|
.arch = "arm",
|
||||||
|
5
sys/release-notes/config.json
Normal file
5
sys/release-notes/config.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"previousRelease": "0.10.6",
|
||||||
|
"releaseVersion": "1.0.0",
|
||||||
|
"codeName": "potato"
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user