mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-27 00:05: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
|
||||
.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",
|
||||
|
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