Skip to content

Commit

Permalink
fix libafl part of meson build (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmalmain authored Oct 28, 2024
1 parent 6bc81c2 commit 513bd84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -4059,15 +4059,15 @@ 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)
endif
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
Expand Down

0 comments on commit 513bd84

Please sign in to comment.