Merge pull request #2099 from Atlante45/dev

Fix dynamic_lookup linker flag for Apple clang
This commit is contained in:
van Hauser
2024-05-24 01:33:55 +02:00
committed by GitHub

View File

@ -2366,8 +2366,7 @@ static void add_aflpplib(aflcc_state_t *aflcc) {
insert_param(aflcc, afllib); insert_param(aflcc, afllib);
#ifdef __APPLE__ #ifdef __APPLE__
insert_param(aflcc, "-Wl,-undefined"); insert_param(aflcc, "-Wl,-undefined,dynamic_lookup");
insert_param(aflcc, "dynamic_lookup");
#endif #endif
} }