about summary refs log tree commit diff
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2024-10-07 10:01:25 +0200
committerGitHub <noreply@github.com>2024-10-07 10:01:25 +0200
commit5e8e233755cd9ca019c1d2cb1b80f75c519b9a4f (patch)
treea8c65391f842d10347f39621dd9b356fba532edf
parent31ed850c4bc9ed742b43ae8ae81c537f1a4e7433 (diff)
parentcb5a61d8a1caf235a4852559086895ce841ac292 (diff)
downloadafl++-5e8e233755cd9ca019c1d2cb1b80f75c519b9a4f.tar.gz
Merge pull request #2217 from carlocab/macos-flags
Update macOS linker flags in GNUmakefile.llvm
-rw-r--r--GNUmakefile.llvm2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile.llvm b/GNUmakefile.llvm
index d5dcb09b..2e806ab8 100644
--- a/GNUmakefile.llvm
+++ b/GNUmakefile.llvm
@@ -327,7 +327,7 @@ endif
 
 # User teor2345 reports that this is required to make things work on MacOS X.
 ifeq "$(SYS)" "Darwin"
-  CLANG_LFL += -Wl,-flat_namespace -Wl,-undefined,suppress
+  CLANG_LFL += -Wl,-undefined,dynamic_lookup
   override LLVM_HAVE_LTO := 0
   override LLVM_LTO := 0
 else