mirror of
https://github.com/radareorg/radare2
synced 2026-08-22 20:23:32 -04:00
* Disable Zydis in Fil-C builds ##ci * Link bundled Zydis in static builds ##ci * Keep Capstone as default x86 plugin
12 lines
292 B
Bash
Executable file
12 lines
292 B
Bash
Executable file
#!/bin/sh
|
|
touch libr/xps/deps.h
|
|
touch libr/xps/deps.mk
|
|
case "$1" in
|
|
--report|-r|--version|-V|-qV|--quiet-version|--help)
|
|
: # nothing to do here
|
|
;;
|
|
*)
|
|
[ dist/plugins-cfg/plugins.def.cfg -nt ./plugins.cfg ] && rm -f plugins.cfg
|
|
WANT_ZYDIS="${WANT_ZYDIS:-1}" ./configure-plugins $*
|
|
;;
|
|
esac
|