2018-07-09 22:58:38 +08:00
|
|
|
# handle capstone dependency
|
|
|
|
capstone_dep = dependency('capstone', version: '>=3.0.4', required: false)
|
|
|
|
if not capstone_dep.found() or not get_option('use_sys_capstone')
|
|
|
|
message('Use bundled capstone')
|
|
|
|
|
2018-08-10 16:31:17 +08:00
|
|
|
if get_option('capstone_in_builddir')
|
|
|
|
capstone_path = join_paths(meson.current_build_dir(), 'capstone')
|
|
|
|
else
|
|
|
|
capstone_path = join_paths(meson.current_source_dir(), 'capstone')
|
|
|
|
endif
|
|
|
|
|
2018-07-23 20:39:10 +08:00
|
|
|
res = run_command(py3_exe, '-c', '__import__("sys").exit(__import__("os").path.exists("@0@"))'.format(capstone_path))
|
2018-07-09 22:58:38 +08:00
|
|
|
if res.returncode() == 0
|
|
|
|
if not git_exe.found()
|
|
|
|
error('Cannot load capstone library. Either provide capstone in ./shlr/capstone or install git, so it can be downloaded')
|
|
|
|
endif
|
|
|
|
|
2018-07-30 14:51:47 +08:00
|
|
|
# NOTE: when you update CS_TIP or CS_BRA, also update them in shlr/Makefile
|
2019-04-12 17:24:08 +08:00
|
|
|
CS_TIP = '3a660df88c30685cccf6ff68b4d6d4337b5caf7e'
|
|
|
|
CS_BRA = 'next'
|
2018-07-23 20:39:10 +08:00
|
|
|
|
2018-07-30 14:51:47 +08:00
|
|
|
capstone_git_user = 'aquynh'
|
|
|
|
|
|
|
|
message('Cloning capstone ' + CS_BRA + ' branch, commit ' + CS_TIP + ', into ' + capstone_path)
|
|
|
|
git_cmd = 'clone -b @0@ https://github.com/@1@/capstone.git @2@'.format(CS_BRA, capstone_git_user, capstone_path)
|
2018-07-23 20:39:10 +08:00
|
|
|
clone_cmd = run_command(git_exe, git_cmd.split())
|
|
|
|
if clone_cmd.returncode() != 0
|
|
|
|
error('Cannot execute git clone command')
|
|
|
|
endif
|
|
|
|
|
|
|
|
reset_cmd_str = '-C @0@ reset --hard @1@'.format(capstone_path, CS_TIP)
|
|
|
|
reset_cmd = run_command(git_exe, reset_cmd_str.split())
|
|
|
|
if reset_cmd.returncode() != 0
|
|
|
|
error('Cannot execute git reset command')
|
|
|
|
endif
|
2018-07-14 00:19:56 +08:00
|
|
|
|
|
|
|
patches_files = [
|
|
|
|
'capstone-calloc.patch',
|
|
|
|
'fix-x86-16.patch',
|
|
|
|
'sparc-crash.patch',
|
|
|
|
'sstream-null.patch'
|
|
|
|
]
|
|
|
|
|
|
|
|
message('Patching capstone with radare\'s patches')
|
|
|
|
foreach file : patches_files
|
2018-07-23 20:39:10 +08:00
|
|
|
patch_path = join_paths(meson.current_source_dir(), 'capstone-patches', file)
|
|
|
|
patch_cmd_str = '-C @0@ apply -p1 @1@'.format(capstone_path, patch_path)
|
|
|
|
patch_cmd = run_command(git_exe, patch_cmd_str.split())
|
|
|
|
if patch_cmd.returncode() != 0
|
|
|
|
error('Cannot apply patch ' + file)
|
|
|
|
endif
|
2018-07-14 00:19:56 +08:00
|
|
|
endforeach
|
2018-05-16 14:32:26 +08:00
|
|
|
endif
|
|
|
|
|
2018-07-23 20:39:10 +08:00
|
|
|
rel_cs_files = [
|
|
|
|
'arch/AArch64/AArch64BaseInfo.c',
|
|
|
|
'arch/AArch64/AArch64Disassembler.c',
|
|
|
|
'arch/AArch64/AArch64InstPrinter.c',
|
|
|
|
'arch/AArch64/AArch64Mapping.c',
|
|
|
|
'arch/AArch64/AArch64Module.c',
|
|
|
|
'arch/ARM/ARMDisassembler.c',
|
|
|
|
'arch/ARM/ARMInstPrinter.c',
|
|
|
|
'arch/ARM/ARMMapping.c',
|
|
|
|
'arch/ARM/ARMModule.c',
|
|
|
|
'arch/M68K/M68KDisassembler.c',
|
|
|
|
'arch/M68K/M68KInstPrinter.c',
|
|
|
|
'arch/M68K/M68KModule.c',
|
|
|
|
'arch/Mips/MipsDisassembler.c',
|
|
|
|
'arch/Mips/MipsInstPrinter.c',
|
|
|
|
'arch/Mips/MipsMapping.c',
|
|
|
|
'arch/Mips/MipsModule.c',
|
|
|
|
'arch/PowerPC/PPCDisassembler.c',
|
|
|
|
'arch/PowerPC/PPCInstPrinter.c',
|
|
|
|
'arch/PowerPC/PPCMapping.c',
|
|
|
|
'arch/PowerPC/PPCModule.c',
|
|
|
|
'arch/Sparc/SparcDisassembler.c',
|
|
|
|
'arch/Sparc/SparcInstPrinter.c',
|
|
|
|
'arch/Sparc/SparcMapping.c',
|
|
|
|
'arch/Sparc/SparcModule.c',
|
|
|
|
'arch/SystemZ/SystemZDisassembler.c',
|
|
|
|
'arch/SystemZ/SystemZInstPrinter.c',
|
|
|
|
'arch/SystemZ/SystemZMapping.c',
|
|
|
|
'arch/SystemZ/SystemZMCTargetDesc.c',
|
|
|
|
'arch/SystemZ/SystemZModule.c',
|
|
|
|
'arch/TMS320C64x/TMS320C64xDisassembler.c',
|
|
|
|
'arch/TMS320C64x/TMS320C64xInstPrinter.c',
|
|
|
|
'arch/TMS320C64x/TMS320C64xMapping.c',
|
|
|
|
'arch/TMS320C64x/TMS320C64xModule.c',
|
|
|
|
'arch/X86/X86ATTInstPrinter.c',
|
|
|
|
'arch/X86/X86Disassembler.c',
|
|
|
|
'arch/X86/X86DisassemblerDecoder.c',
|
|
|
|
'arch/X86/X86IntelInstPrinter.c',
|
2019-04-12 19:10:18 +08:00
|
|
|
'arch/X86/X86InstPrinterCommon.c',
|
2018-07-23 20:39:10 +08:00
|
|
|
'arch/X86/X86Mapping.c',
|
|
|
|
'arch/X86/X86Module.c',
|
|
|
|
'arch/XCore/XCoreDisassembler.c',
|
|
|
|
'arch/XCore/XCoreInstPrinter.c',
|
|
|
|
'arch/XCore/XCoreMapping.c',
|
|
|
|
'arch/XCore/XCoreModule.c',
|
|
|
|
'cs.c',
|
|
|
|
'MCInst.c',
|
|
|
|
'MCInstrDesc.c',
|
|
|
|
'MCRegisterInfo.c',
|
|
|
|
'SStream.c',
|
|
|
|
'utils.c',
|
2018-07-09 22:58:38 +08:00
|
|
|
]
|
|
|
|
|
2018-07-23 20:39:10 +08:00
|
|
|
cs_files = []
|
|
|
|
foreach rel_cs_file : rel_cs_files
|
|
|
|
cs_files += [join_paths(capstone_path, rel_cs_file)]
|
|
|
|
endforeach
|
|
|
|
|
2018-07-09 22:58:38 +08:00
|
|
|
capstone_includes = [platform_inc, include_directories('capstone/include')]
|
|
|
|
|
|
|
|
libr2capstone = static_library('r2capstone', cs_files,
|
|
|
|
c_args: [
|
|
|
|
'-DCAPSTONE_X86_ATT_DISABLE_NO',
|
|
|
|
'-DCAPSTONE_X86_REDUCE_NO',
|
|
|
|
'-DCAPSTONE_USE_SYS_DYN_MEM',
|
|
|
|
'-DCAPSTONE_DIET_NO',
|
|
|
|
'-DCAPSTONE_HAS_ARM',
|
|
|
|
'-DCAPSTONE_HAS_ARM64',
|
|
|
|
'-DCAPSTONE_HAS_M68K',
|
|
|
|
'-DCAPSTONE_HAS_MIPS',
|
|
|
|
'-DCAPSTONE_HAS_POWERPC',
|
|
|
|
'-DCAPSTONE_HAS_SPARC',
|
|
|
|
'-DCAPSTONE_HAS_SYSZ',
|
|
|
|
'-DCAPSTONE_HAS_X86',
|
|
|
|
'-DCAPSTONE_HAS_XCORE',
|
|
|
|
'-DCAPSTONE_HAS_TMS320C64X',
|
|
|
|
],
|
|
|
|
include_directories: capstone_includes,
|
|
|
|
implicit_include_directories: false
|
|
|
|
)
|
|
|
|
|
2018-07-24 01:39:58 +08:00
|
|
|
capstone_dep = declare_dependency(
|
|
|
|
link_with: libr2capstone,
|
|
|
|
include_directories: capstone_includes
|
|
|
|
)
|
2018-07-09 22:58:38 +08:00
|
|
|
else
|
|
|
|
message('Use system-provided capstone library')
|
2018-03-05 07:10:28 +08:00
|
|
|
endif
|
|
|
|
|
2018-07-09 22:58:38 +08:00
|
|
|
|
|
|
|
# handle sdb dependency
|
2018-08-07 18:12:19 +08:00
|
|
|
# NOTE: copying most of the stuff from sdb to here for the moment, since we
|
|
|
|
# should use subpackages to handle this well
|
2018-07-09 22:58:38 +08:00
|
|
|
sdb_files = [
|
|
|
|
'sdb/src/array.c',
|
|
|
|
'sdb/src/base64.c',
|
|
|
|
'sdb/src/buffer.c',
|
|
|
|
'sdb/src/cdb.c',
|
|
|
|
'sdb/src/cdb_make.c',
|
|
|
|
'sdb/src/dict.c',
|
|
|
|
'sdb/src/disk.c',
|
|
|
|
'sdb/src/fmt.c',
|
2018-11-14 17:47:28 +08:00
|
|
|
'sdb/src/ht_uu.c',
|
|
|
|
'sdb/src/ht_up.c',
|
|
|
|
'sdb/src/ht_pp.c',
|
2018-07-09 22:58:38 +08:00
|
|
|
'sdb/src/journal.c',
|
|
|
|
'sdb/src/json.c',
|
|
|
|
'sdb/src/lock.c',
|
|
|
|
'sdb/src/ls.c',
|
|
|
|
# 'sdb/src/main.c',
|
|
|
|
'sdb/src/match.c',
|
|
|
|
'sdb/src/ns.c',
|
|
|
|
'sdb/src/num.c',
|
|
|
|
'sdb/src/query.c',
|
|
|
|
'sdb/src/sdb.c',
|
|
|
|
'sdb/src/sdbht.c',
|
|
|
|
'sdb/src/util.c'
|
|
|
|
]
|
|
|
|
|
|
|
|
sdb_inc = [platform_inc, include_directories('sdb/src')]
|
|
|
|
|
|
|
|
libr2sdb = static_library('r2sdb', sdb_files,
|
2018-07-24 01:39:58 +08:00
|
|
|
include_directories: sdb_inc,
|
|
|
|
implicit_include_directories: false
|
|
|
|
)
|
2018-07-09 22:58:38 +08:00
|
|
|
|
2018-07-24 01:39:58 +08:00
|
|
|
sdb_dep = declare_dependency(
|
|
|
|
link_with: libr2sdb,
|
|
|
|
include_directories: sdb_inc
|
|
|
|
)
|
2018-07-09 22:58:38 +08:00
|
|
|
|
2018-08-07 18:12:19 +08:00
|
|
|
# Create sdb_version.h
|
|
|
|
sdb_version = '1.2.0'
|
|
|
|
run_command(py3_exe, '-c', 'with open("sdb/src/sdb_version.h", "w") as f: f.write("#define SDB_VERSION \"' + sdb_version + '\"")')
|
|
|
|
|
|
|
|
sdb_exe = executable('sdb', 'sdb/src/main.c',
|
|
|
|
include_directories: [
|
|
|
|
include_directories(['sdb/src'])
|
|
|
|
],
|
|
|
|
link_with: [libr2sdb],
|
|
|
|
implicit_include_directories: false
|
|
|
|
)
|
|
|
|
|
|
|
|
sdb_gen_cmd = [
|
|
|
|
py3_exe,
|
|
|
|
'-c',
|
|
|
|
'from sys import argv; __import__("os").system("@0@ %s = <%s" % (argv[1], argv[2]))'.format(sdb_exe.full_path()),
|
|
|
|
'@OUTPUT@',
|
|
|
|
'@INPUT@'
|
|
|
|
]
|
|
|
|
|
2018-07-09 22:58:38 +08:00
|
|
|
|
|
|
|
# handle bochs dependency
|
2018-02-20 16:33:19 +08:00
|
|
|
bochs_files = [
|
|
|
|
'bochs/src/libbochs.c'
|
2017-05-31 00:38:19 +08:00
|
|
|
]
|
|
|
|
|
2018-07-09 22:58:38 +08:00
|
|
|
bochs_inc = [platform_inc, include_directories('bochs/include')]
|
|
|
|
|
2018-03-31 05:35:12 +08:00
|
|
|
libr2bochs = static_library('r2bochs', bochs_files,
|
2018-07-09 22:58:38 +08:00
|
|
|
include_directories: bochs_inc,
|
2018-02-20 16:33:19 +08:00
|
|
|
implicit_include_directories: false
|
2017-05-31 19:38:47 +08:00
|
|
|
)
|
2017-08-03 20:58:39 +08:00
|
|
|
|
2018-07-24 01:39:58 +08:00
|
|
|
bochs_dep = declare_dependency(
|
|
|
|
link_with: libr2bochs,
|
|
|
|
include_directories: bochs_inc
|
|
|
|
)
|
2018-07-09 22:58:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
# handle gdb dependency
|
2018-02-20 16:33:19 +08:00
|
|
|
gdb_files = [
|
|
|
|
'gdb/src/arch.c',
|
|
|
|
'gdb/src/common.c',
|
|
|
|
'gdb/src/packet.c',
|
|
|
|
'gdb/src/utils.c',
|
|
|
|
'gdb/src/libgdbr.c',
|
2017-05-31 00:38:19 +08:00
|
|
|
|
2018-02-20 16:33:19 +08:00
|
|
|
'gdb/src/gdbclient/core.c',
|
|
|
|
'gdb/src/gdbclient/responses.c',
|
|
|
|
'gdb/src/gdbclient/xml.c',
|
2017-05-31 00:38:19 +08:00
|
|
|
|
2018-02-20 16:33:19 +08:00
|
|
|
'gdb/src/gdbserver/core.c',
|
2017-05-31 00:38:19 +08:00
|
|
|
]
|
|
|
|
|
2018-07-24 01:39:58 +08:00
|
|
|
gdb_inc = [
|
|
|
|
platform_inc,
|
|
|
|
include_directories(
|
|
|
|
'./gdb/include',
|
|
|
|
'./gdb/include/gdbclient',
|
|
|
|
'./gdb/include/gdbserver'
|
|
|
|
)
|
|
|
|
]
|
2018-07-09 22:58:38 +08:00
|
|
|
|
2018-03-31 05:35:12 +08:00
|
|
|
libr2gdb = static_library('r2gdb', gdb_files,
|
2018-07-09 22:58:38 +08:00
|
|
|
include_directories: gdb_inc,
|
2018-02-20 16:33:19 +08:00
|
|
|
implicit_include_directories: false
|
2017-05-31 19:38:47 +08:00
|
|
|
)
|
2017-05-31 00:38:19 +08:00
|
|
|
|
2018-07-24 01:39:58 +08:00
|
|
|
gdb_dep = declare_dependency(
|
|
|
|
link_with: libr2gdb,
|
|
|
|
include_directories: gdb_inc
|
|
|
|
)
|
2018-07-09 22:58:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
# handle java dependency
|
2018-02-20 16:33:19 +08:00
|
|
|
java_files = [
|
|
|
|
'java/class.c',
|
|
|
|
'java/code.c',
|
|
|
|
'java/dsojson.c',
|
|
|
|
'java/ops.c',
|
|
|
|
#'java/main.c',
|
2017-06-20 17:12:42 +08:00
|
|
|
]
|
|
|
|
|
2018-07-09 22:58:38 +08:00
|
|
|
java_inc = [platform_inc, include_directories('java')]
|
|
|
|
|
2018-03-31 05:35:12 +08:00
|
|
|
libr2java = static_library('r2java', java_files,
|
2018-07-09 22:58:38 +08:00
|
|
|
include_directories: java_inc,
|
|
|
|
dependencies: [sdb_dep],
|
2018-02-20 16:33:19 +08:00
|
|
|
implicit_include_directories: false
|
2017-06-20 17:12:42 +08:00
|
|
|
)
|
2017-05-31 00:38:19 +08:00
|
|
|
|
2018-07-24 01:39:58 +08:00
|
|
|
java_dep = declare_dependency(
|
|
|
|
link_with: libr2java,
|
|
|
|
include_directories: java_inc
|
|
|
|
)
|
2018-07-09 22:58:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
# handle qnx dependency
|
2018-02-20 16:33:19 +08:00
|
|
|
qnx_files = [
|
|
|
|
'qnx/src/core.c',
|
|
|
|
'qnx/src/libqnxr.c',
|
|
|
|
'qnx/src/packet.c',
|
|
|
|
'qnx/src/sigutil.c',
|
|
|
|
'qnx/src/utils.c',
|
2017-05-31 00:38:19 +08:00
|
|
|
]
|
|
|
|
|
2018-07-09 22:58:38 +08:00
|
|
|
qnx_inc = [platform_inc, include_directories('qnx/include')]
|
|
|
|
|
2018-03-31 05:35:12 +08:00
|
|
|
libr2qnx = static_library('r2qnx', qnx_files,
|
2018-07-09 22:58:38 +08:00
|
|
|
include_directories: qnx_inc,
|
2018-02-20 16:33:19 +08:00
|
|
|
implicit_include_directories: false
|
2017-05-31 19:38:47 +08:00
|
|
|
)
|
2017-05-31 00:38:19 +08:00
|
|
|
|
2018-07-24 01:39:58 +08:00
|
|
|
qnx_dep = declare_dependency(
|
|
|
|
link_with: libr2qnx,
|
|
|
|
include_directories: qnx_inc
|
|
|
|
)
|
2018-07-09 22:58:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
# handle tcc dependency (heavily modified version)
|
2018-02-20 16:33:19 +08:00
|
|
|
tcc_files = [
|
|
|
|
'tcc/libtcc.c',
|
|
|
|
'tcc/tccgen.c',
|
|
|
|
'tcc/tccpp.c'
|
2017-08-03 20:58:39 +08:00
|
|
|
]
|
2017-05-31 00:38:19 +08:00
|
|
|
|
2018-07-09 22:58:38 +08:00
|
|
|
tcc_inc = [platform_inc, include_directories('tcc')]
|
|
|
|
|
2018-03-31 05:35:12 +08:00
|
|
|
libr2tcc = static_library('r2tcc', tcc_files,
|
2018-07-09 22:58:38 +08:00
|
|
|
include_directories: tcc_inc,
|
2018-02-20 16:33:19 +08:00
|
|
|
implicit_include_directories: false
|
2017-05-31 19:38:47 +08:00
|
|
|
)
|
2017-08-03 20:58:39 +08:00
|
|
|
|
2018-07-24 01:39:58 +08:00
|
|
|
tcc_dep = declare_dependency(
|
|
|
|
link_with: libr2tcc,
|
|
|
|
include_directories: tcc_inc
|
|
|
|
)
|
2018-07-09 22:58:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
# handle spp dependency
|
2018-02-20 16:33:19 +08:00
|
|
|
spp_files = [
|
2017-05-31 00:38:19 +08:00
|
|
|
'spp/spp.c'
|
|
|
|
]
|
|
|
|
|
2018-07-09 22:58:38 +08:00
|
|
|
spp_inc = [platform_inc, include_directories('spp')]
|
|
|
|
|
2018-03-31 05:35:12 +08:00
|
|
|
libr2spp = static_library('r2spp', spp_files,
|
2018-07-09 22:58:38 +08:00
|
|
|
include_directories: spp_inc,
|
2018-02-20 16:33:19 +08:00
|
|
|
c_args: ['-DHAVE_R_UTIL'],
|
|
|
|
implicit_include_directories: false
|
2017-05-31 19:38:47 +08:00
|
|
|
)
|
2017-08-03 20:58:39 +08:00
|
|
|
|
2018-07-24 01:39:58 +08:00
|
|
|
spp_dep = declare_dependency(
|
|
|
|
link_with: libr2spp,
|
|
|
|
include_directories: spp_inc
|
|
|
|
)
|
2017-05-31 00:38:19 +08:00
|
|
|
|
|
|
|
|
2018-07-09 22:58:38 +08:00
|
|
|
# handle lz4 dependency
|
2018-07-18 05:01:40 +08:00
|
|
|
lz4_dep = dependency('liblz4', required: false)
|
|
|
|
if not lz4_dep.found() or not get_option('use_sys_lz4')
|
|
|
|
message('Use bundled lz4')
|
|
|
|
lz4_files = [
|
|
|
|
'lz4/lz4.c',
|
|
|
|
]
|
2017-11-05 18:40:16 +08:00
|
|
|
|
2018-07-18 05:01:40 +08:00
|
|
|
lz4_inc = [platform_inc, include_directories('lz4')]
|
2018-07-09 22:58:38 +08:00
|
|
|
|
2018-07-18 05:01:40 +08:00
|
|
|
libr2lz4 = static_library('r2lz4', lz4_files,
|
|
|
|
include_directories: lz4_inc,
|
|
|
|
implicit_include_directories: false
|
|
|
|
)
|
2017-11-05 18:40:16 +08:00
|
|
|
|
2018-07-24 01:39:58 +08:00
|
|
|
lz4_dep = declare_dependency(
|
|
|
|
link_with: libr2lz4,
|
|
|
|
include_directories: lz4_inc
|
|
|
|
)
|
2018-07-18 05:01:40 +08:00
|
|
|
else
|
|
|
|
message('Use system-provided lz4 library')
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
# handle zlib dependency
|
|
|
|
zlib_dep = dependency('zlib', required: false)
|
|
|
|
if not zlib_dep.found() or not get_option('use_sys_zlib')
|
|
|
|
message('Use bundled zlib')
|
|
|
|
|
|
|
|
zlib_files = [
|
|
|
|
'zip/zlib/adler32.c',
|
|
|
|
'zip/zlib/compress.c',
|
|
|
|
'zip/zlib/crc32.c',
|
|
|
|
'zip/zlib/deflate.c',
|
|
|
|
'zip/zlib/gzclose.c',
|
|
|
|
'zip/zlib/gzlib.c',
|
|
|
|
'zip/zlib/gzread.c',
|
|
|
|
'zip/zlib/gzwrite.c',
|
|
|
|
'zip/zlib/infback.c',
|
|
|
|
'zip/zlib/inffast.c',
|
|
|
|
'zip/zlib/inflate.c',
|
|
|
|
'zip/zlib/inftrees.c',
|
|
|
|
'zip/zlib/trees.c',
|
|
|
|
'zip/zlib/uncompr.c',
|
|
|
|
'zip/zlib/zutil.c'
|
|
|
|
]
|
|
|
|
|
|
|
|
zlib_inc = [platform_inc, include_directories('zip/zlib')]
|
|
|
|
|
|
|
|
libr2zlib = static_library('r2zlib', zlib_files,
|
2018-07-24 01:39:58 +08:00
|
|
|
include_directories: zlib_inc,
|
|
|
|
implicit_include_directories: false
|
|
|
|
)
|
2018-07-18 05:01:40 +08:00
|
|
|
|
2018-07-24 01:39:58 +08:00
|
|
|
zlib_dep = declare_dependency(
|
|
|
|
link_with: libr2zlib,
|
|
|
|
include_directories: zlib_inc
|
|
|
|
)
|
2018-07-18 05:01:40 +08:00
|
|
|
else
|
|
|
|
message('Use system-provided zlib library')
|
|
|
|
endif
|
2018-07-09 22:58:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
# handle zip dependency
|
2018-07-18 05:01:40 +08:00
|
|
|
zip_dep = dependency('libzip', required: false)
|
|
|
|
if not zip_dep.found() or not get_option('use_sys_zip')
|
|
|
|
message('Use bundled zip')
|
|
|
|
|
|
|
|
zip_files = [
|
|
|
|
'zip/zip/zip_add.c',
|
|
|
|
'zip/zip/zip_add_dir.c',
|
|
|
|
'zip/zip/zip_add_entry.c',
|
|
|
|
'zip/zip/zip_close.c',
|
|
|
|
'zip/zip/zip_delete.c',
|
|
|
|
'zip/zip/zip_dir_add.c',
|
|
|
|
'zip/zip/zip_dirent.c',
|
|
|
|
'zip/zip/zip_discard.c',
|
|
|
|
'zip/zip/zip_entry.c',
|
|
|
|
'zip/zip/zip_err_str.c',
|
|
|
|
'zip/zip/zip_error.c',
|
|
|
|
#'zip/zip/zip_error_clear.c',
|
|
|
|
'zip/zip/zip_error_get.c',
|
|
|
|
'zip/zip/zip_error_get_sys_type.c',
|
|
|
|
'zip/zip/zip_error_strerror.c',
|
|
|
|
'zip/zip/zip_error_to_str.c',
|
|
|
|
'zip/zip/zip_extra_field.c',
|
|
|
|
'zip/zip/zip_extra_field_api.c',
|
|
|
|
'zip/zip/zip_fclose.c',
|
|
|
|
'zip/zip/zip_fdopen.c',
|
|
|
|
'zip/zip/zip_file_add.c',
|
|
|
|
#'zip/zip/zip_file_error_clear.c',
|
|
|
|
'zip/zip/zip_file_error_get.c',
|
|
|
|
'zip/zip/zip_file_get_comment.c',
|
|
|
|
'zip/zip/zip_file_get_offset.c',
|
|
|
|
'zip/zip/zip_file_rename.c',
|
|
|
|
'zip/zip/zip_file_replace.c',
|
|
|
|
'zip/zip/zip_file_set_comment.c',
|
|
|
|
'zip/zip/zip_file_strerror.c',
|
|
|
|
'zip/zip/zip_filerange_crc.c',
|
|
|
|
'zip/zip/zip_fopen.c',
|
|
|
|
'zip/zip/zip_fopen_encrypted.c',
|
|
|
|
'zip/zip/zip_fopen_index.c',
|
|
|
|
'zip/zip/zip_fopen_index_encrypted.c',
|
|
|
|
'zip/zip/zip_fread.c',
|
|
|
|
'zip/zip/zip_get_archive_comment.c',
|
|
|
|
'zip/zip/zip_get_archive_flag.c',
|
|
|
|
'zip/zip/zip_get_compression_implementation.c',
|
|
|
|
'zip/zip/zip_get_encryption_implementation.c',
|
|
|
|
'zip/zip/zip_get_file_comment.c',
|
|
|
|
'zip/zip/zip_get_name.c',
|
|
|
|
'zip/zip/zip_get_num_entries.c',
|
|
|
|
'zip/zip/zip_get_num_files.c',
|
|
|
|
'zip/zip/zip_name_locate.c',
|
|
|
|
'zip/zip/zip_new.c',
|
|
|
|
'zip/zip/zip_open.c',
|
|
|
|
'zip/zip/zip_rename.c',
|
|
|
|
'zip/zip/zip_replace.c',
|
|
|
|
'zip/zip/zip_set_archive_comment.c',
|
|
|
|
'zip/zip/zip_set_archive_flag.c',
|
|
|
|
'zip/zip/zip_set_default_password.c',
|
|
|
|
'zip/zip/zip_set_file_comment.c',
|
|
|
|
'zip/zip/zip_set_file_compression.c',
|
|
|
|
'zip/zip/zip_set_name.c',
|
|
|
|
'zip/zip/zip_source_buffer.c',
|
|
|
|
'zip/zip/zip_source_close.c',
|
|
|
|
'zip/zip/zip_source_crc.c',
|
|
|
|
'zip/zip/zip_source_deflate.c',
|
|
|
|
'zip/zip/zip_source_error.c',
|
|
|
|
'zip/zip/zip_source_file.c',
|
|
|
|
'zip/zip/zip_source_filep.c',
|
|
|
|
'zip/zip/zip_source_free.c',
|
|
|
|
'zip/zip/zip_source_function.c',
|
|
|
|
'zip/zip/zip_source_layered.c',
|
|
|
|
'zip/zip/zip_source_open.c',
|
|
|
|
'zip/zip/zip_source_pkware.c',
|
|
|
|
'zip/zip/zip_source_pop.c',
|
|
|
|
'zip/zip/zip_source_read.c',
|
|
|
|
'zip/zip/zip_source_stat.c',
|
|
|
|
'zip/zip/zip_source_window.c',
|
|
|
|
'zip/zip/zip_source_zip.c',
|
|
|
|
'zip/zip/zip_source_zip_new.c',
|
|
|
|
'zip/zip/zip_stat.c',
|
|
|
|
'zip/zip/zip_stat_index.c',
|
|
|
|
'zip/zip/zip_stat_init.c',
|
|
|
|
'zip/zip/zip_strerror.c',
|
|
|
|
'zip/zip/zip_string.c',
|
|
|
|
'zip/zip/zip_unchange.c',
|
|
|
|
'zip/zip/zip_unchange_all.c',
|
|
|
|
'zip/zip/zip_unchange_archive.c',
|
|
|
|
'zip/zip/zip_unchange_data.c',
|
|
|
|
'zip/zip/zip_utf-8.c'
|
|
|
|
]
|
2017-05-31 00:38:19 +08:00
|
|
|
|
2018-07-18 05:01:40 +08:00
|
|
|
zip_inc = [platform_inc, include_directories('zip/include')]
|
2018-07-09 22:58:38 +08:00
|
|
|
|
2018-07-18 05:01:40 +08:00
|
|
|
libr2zip = static_library('r2zip', zip_files,
|
|
|
|
include_directories: zip_inc,
|
|
|
|
implicit_include_directories: false,
|
|
|
|
dependencies: zlib_dep
|
|
|
|
)
|
2017-05-31 19:38:47 +08:00
|
|
|
|
2018-07-24 01:39:58 +08:00
|
|
|
zip_dep = declare_dependency(
|
|
|
|
link_with: libr2zip,
|
|
|
|
include_directories: zip_inc
|
|
|
|
)
|
2018-07-18 05:01:40 +08:00
|
|
|
else
|
|
|
|
message('Use system-provided zip library')
|
|
|
|
endif
|
2017-05-31 00:38:19 +08:00
|
|
|
|
2017-08-03 20:58:39 +08:00
|
|
|
|
2018-07-09 22:58:38 +08:00
|
|
|
# handle grub dependency
|
2018-02-20 16:33:19 +08:00
|
|
|
grub_files = [
|
2018-08-08 15:04:23 +08:00
|
|
|
#'grub/fs/affs.c',
|
2018-02-20 16:33:19 +08:00
|
|
|
#'grub/fs/afs.c',
|
|
|
|
#'grub/fs/afs_be.c',
|
|
|
|
#'grub/fs/befs.c',
|
|
|
|
#'grub/fs/befs_be.c',
|
2018-08-08 15:04:23 +08:00
|
|
|
#'grub/fs/btrfs.c',
|
2018-05-16 16:24:35 +08:00
|
|
|
'grub/fs/cpio.c',
|
2018-02-20 16:33:19 +08:00
|
|
|
'grub/fs/ext2.c',
|
|
|
|
'grub/fs/fat.c',
|
|
|
|
'grub/fs/fb.c',
|
|
|
|
'grub/fs/fshelp.c',
|
|
|
|
'grub/fs/hfs.c',
|
|
|
|
'grub/fs/hfsplus.c',
|
|
|
|
'grub/fs/iso9660.c',
|
|
|
|
'grub/fs/jfs.c',
|
|
|
|
'grub/fs/minix.c',
|
2018-08-08 15:04:23 +08:00
|
|
|
#'grub/fs/minix2.c',
|
|
|
|
#'grub/fs/nilfs2.c',
|
2018-02-20 16:33:19 +08:00
|
|
|
'grub/fs/ntfs.c',
|
|
|
|
'grub/fs/ntfscomp.c',
|
|
|
|
'grub/fs/reiserfs.c',
|
|
|
|
'grub/fs/sfs.c',
|
|
|
|
'grub/fs/tar.c',
|
|
|
|
'grub/fs/udf.c',
|
|
|
|
'grub/fs/ufs.c',
|
|
|
|
'grub/fs/ufs2.c',
|
|
|
|
'grub/fs/xfs.c',
|
|
|
|
'grub/grubfs.c',
|
|
|
|
'grub/kern/device.c',
|
|
|
|
'grub/kern/disk.c',
|
|
|
|
#'grub/kern/dl.c',
|
|
|
|
'grub/kern/env.c',
|
|
|
|
'grub/kern/err.c',
|
|
|
|
'grub/kern/file.c',
|
|
|
|
'grub/kern/fs.c',
|
|
|
|
'grub/kern/list.c',
|
|
|
|
'grub/kern/misc.c',
|
|
|
|
'grub/kern/mm.c',
|
|
|
|
'grub/kern/partition.c',
|
|
|
|
'grub/kern/term.c',
|
|
|
|
'grub/kern/time.c',
|
|
|
|
#'grub/main.c',
|
|
|
|
#'grub/partmap/acorn.c',
|
|
|
|
'grub/partmap/amiga.c',
|
|
|
|
'grub/partmap/apple.c',
|
|
|
|
'grub/partmap/bsdlabel.c',
|
|
|
|
'grub/partmap/gpt.c',
|
|
|
|
'grub/partmap/msdos.c',
|
|
|
|
'grub/partmap/sun.c',
|
|
|
|
'grub/partmap/sunpc.c',
|
2017-05-31 00:38:19 +08:00
|
|
|
]
|
|
|
|
|
2018-07-09 22:58:38 +08:00
|
|
|
grub_inc = [platform_inc, include_directories('grub', 'grub/include')]
|
|
|
|
|
2018-03-31 05:35:12 +08:00
|
|
|
libr2grub = static_library('r2grub', grub_files,
|
2018-07-09 22:58:38 +08:00
|
|
|
include_directories: grub_inc,
|
2018-02-20 16:33:19 +08:00
|
|
|
implicit_include_directories: false
|
2017-05-31 19:38:47 +08:00
|
|
|
)
|
|
|
|
|
2018-07-24 01:39:58 +08:00
|
|
|
grub_dep = declare_dependency(
|
|
|
|
link_with: libr2grub,
|
|
|
|
include_directories: grub_inc
|
|
|
|
)
|
2018-07-09 22:58:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
# handle windbg dependency
|
2018-02-20 16:33:19 +08:00
|
|
|
windbg_files = [
|
|
|
|
'windbg/iob_pipe.c',
|
|
|
|
'windbg/kd.c',
|
|
|
|
'windbg/transport.c',
|
|
|
|
'windbg/windbg.c',
|
2017-05-31 19:38:47 +08:00
|
|
|
]
|
|
|
|
|
2018-07-09 22:58:38 +08:00
|
|
|
windbg_inc = [platform_inc, include_directories('windbg')]
|
|
|
|
|
2018-03-31 05:35:12 +08:00
|
|
|
libr2windbg = static_library('r2windbg', windbg_files,
|
2018-07-09 22:58:38 +08:00
|
|
|
include_directories: windbg_inc,
|
2018-02-20 16:33:19 +08:00
|
|
|
implicit_include_directories: false
|
2017-05-31 19:38:47 +08:00
|
|
|
)
|
|
|
|
|
2018-07-24 01:39:58 +08:00
|
|
|
windbg_dep = declare_dependency(
|
|
|
|
link_with: libr2windbg,
|
|
|
|
include_directories: windbg_inc
|
|
|
|
)
|
2018-07-09 22:58:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
# handle ar dependency
|
2018-02-20 16:33:19 +08:00
|
|
|
ar_files = [
|
|
|
|
'ar/ar.c'
|
2017-08-17 16:33:58 +08:00
|
|
|
]
|
|
|
|
|
2018-07-09 22:58:38 +08:00
|
|
|
ar_inc = [platform_inc, include_directories(['ar'])]
|
|
|
|
|
2018-03-31 05:35:12 +08:00
|
|
|
libr2ar = static_library('r2ar', ar_files,
|
2018-07-09 22:58:38 +08:00
|
|
|
include_directories: ar_inc,
|
2018-02-20 16:33:19 +08:00
|
|
|
implicit_include_directories: false
|
2017-08-17 16:33:58 +08:00
|
|
|
)
|
2018-02-20 16:33:19 +08:00
|
|
|
|
2018-07-24 01:39:58 +08:00
|
|
|
ar_dep = declare_dependency(
|
|
|
|
link_with: libr2ar,
|
|
|
|
include_directories: ar_inc
|
|
|
|
)
|
2018-10-12 18:20:18 +08:00
|
|
|
|
|
|
|
|
|
|
|
# handle ptrace-wrap dependency
|
|
|
|
if use_ptrace_wrap
|
|
|
|
subdir('ptrace-wrap')
|
|
|
|
endif
|