This commit is contained in:
alexey.lysiuk 2023-03-28 15:07:24 +03:00
parent e7c04c1bd7
commit 584d339ece
2 changed files with 10 additions and 1 deletions

View file

@ -94,7 +94,8 @@ class Radare2Target(base.MesonTarget):
def prepare_source(self, state: BuildState):
state.download_source(
'https://github.com/radareorg/radare2/archive/refs/tags/5.8.4.tar.gz',
'8ea45bd82e5ea37e270ca14ac2a6f947c647a24f9de9e18bf8cebc71c0816dcd')
'8ea45bd82e5ea37e270ca14ac2a6f947c647a24f9de9e18bf8cebc71c0816dcd',
patches='radare2-fix-build')
def detect(self, state: BuildState) -> bool:
return state.has_source_file('man/radare2.1')

View file

@ -0,0 +1,8 @@
--- a/libr/arch/p/xtensa/plugin.c
+++ b/libr/arch/p/xtensa/plugin.c
@@ -2106,3 +2106,5 @@
.version = R2_VERSION
};
#endif
+
+xtensa_isa xtensa_default_isa;