Displaying 1 result from an estimated 1 matches for "44d5b2d".
2011 Jan 14
0
[LLVMdev] Building the shared library on Mac OS X
...1addArgumentEv
Referenced from: /Users/<user>/llvm/2.8/lib/libLLVM-2.8.dylib
Expected in: flat namespace
Trace/BPT trap
So I applied the following change (after a conversation with a fellow
developer facing the same problems):
diff --git a/Makefile.rules b/Makefile.rules
index 9cff105..44d5b2d 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -497,7 +497,7 @@ ifeq ($(HOST_OS),Darwin)
# Get "4" out of 10.4 for later pieces in the makefile.
DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E
's/10.([0-9]).*/\1/')
- SharedLinkOptions=-Wl,-flat_namespace -Wl,...