mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-16 20:08:07 +00:00
fix AFL_REAL_LD for afl-cc
This commit is contained in:
@ -555,7 +555,8 @@ static void edit_params(u32 argc, char **argv, char **envp) {
|
||||
|
||||
if (lto_mode && !have_c) {
|
||||
|
||||
u8 *ld_path = strdup(AFL_REAL_LD);
|
||||
u8 *ld_path = NULL;
|
||||
if (getenv("AFL_REAL_LD")) { ld_path = strdup(getenv("AFL_REAL_LD")); }
|
||||
if (!ld_path || !*ld_path) { ld_path = strdup("ld.lld"); }
|
||||
if (!ld_path) { PFATAL("Could not allocate mem for ld_path"); }
|
||||
#if defined(AFL_CLANG_LDPATH) && LLVM_MAJOR >= 12
|
||||
|
Reference in New Issue
Block a user