fix libafl part of meson build (#91)

This commit is contained in:
Romain Malmain 2024-10-28 18:42:46 +01:00 committed by GitHub
parent 6bc81c2b3a
commit 513bd84b40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4059,7 +4059,7 @@ foreach target : target_dirs
emulator = shared_library(exe_name, exe['sources'],
install: true,
c_args: c_args,
dependencies: arch_deps + deps + exe['dependencies'],
dependencies: arch_deps + exe['dependencies'],
objects: lib.extract_all_objects(recursive: true),
link_depends: [block_syms, qemu_syms],
link_args: link_args)
@ -4067,7 +4067,7 @@ foreach target : target_dirs
if 'AS_STATIC_LIB' in config_host
emulator = static_library(exe_name, exe['sources'],
c_args: c_args,
dependencies: arch_deps + deps + exe['dependencies'],
dependencies: arch_deps + exe['dependencies'],
objects: lib.extract_all_objects(recursive: true))
endif
endif