diff options
author | hexcoder- <heiko@hexco.de> | 2020-08-31 16:19:09 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-08-31 16:19:09 +0200 |
commit | 18ea9a84476fec095abd88457b635fcaf7f1bb74 (patch) | |
tree | 2ad115d66a749dfeb0609e934d301df1ba416655 /llvm_mode/afl-clang-fast.c | |
parent | ebd1e6bc4b508b0cad4da868a0be6c8898c7f95e (diff) | |
download | afl++-18ea9a84476fec095abd88457b635fcaf7f1bb74.tar.gz |
omit linker option '--dynamic-list' for MacOS
Diffstat (limited to 'llvm_mode/afl-clang-fast.c')
-rw-r--r-- | llvm_mode/afl-clang-fast.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm_mode/afl-clang-fast.c b/llvm_mode/afl-clang-fast.c index 173dc268..281d6b4b 100644 --- a/llvm_mode/afl-clang-fast.c +++ b/llvm_mode/afl-clang-fast.c @@ -670,9 +670,11 @@ static void edit_params(u32 argc, char **argv, char **envp) { } +#ifndef __APPLE__ if (!shared_linking) cc_params[cc_par_cnt++] = alloc_printf("-Wl,--dynamic-list=%s/dynamic_list.txt", obj_path); +#endif #endif |