1 ##===- tools/shlib/Makefile --------------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 ##===----------------------------------------------------------------------===##
12 LIBRARYNAME = LLVM-$(LLVMVersion)
15 LINK_LIBS_IN_SHARED := 1
18 include $(LEVEL)/Makefile.config
20 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
21 EXPORTED_SYMBOL_FILE = $(ObjDir)/$(LIBRARYNAME).exports
23 ifeq (1,$(ENABLE_EMBED_STDCXX))
24 # It is needed to force static-stdc++.a linked.
25 SHLIB_FRAG_NAMES += stdc++.a.o
30 include $(LEVEL)/Makefile.common
32 # Include all archives in libLLVM.(so|dylib) except the ones that have
33 # their own dynamic libraries and TableGen.
34 Archives := $(wildcard $(LibDir)/libLLVM*.a)
35 SharedLibraries := $(wildcard $(LibDir)/libLLVM*$(SHLIBEXT))
36 ExcludeFromLibLlvm := $(basename $(SharedLibraries)).a %/libLLVMTableGen.a
37 IncludeInLibLlvm := $(filter-out $(ExcludeFromLibLlvm), $(Archives))
38 LLVMLibsOptions := $(IncludeInLibLlvm:$(LibDir)/lib%.a=-l%)
39 LLVMLibsPaths := $(IncludeInLibLlvm)
41 $(LibName.SO): $(LLVMLibsPaths)
43 ifeq ($(HOST_OS),Darwin)
44 # set dylib internal version number to llvmCore submission number
45 ifdef LLVM_SUBMIT_VERSION
46 LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version \
47 -Wl,$(LLVM_SUBMIT_VERSION).$(LLVM_SUBMIT_SUBVERSION) \
48 -Wl,-compatibility_version -Wl,1
50 # Include everything from the .a's into the shared library.
51 LLVMLibsOptions := $(LLVMLibsOptions) -all_load
52 # extra options to override libtool defaults
53 LLVMLibsOptions := $(LLVMLibsOptions) \
56 # Mac OS X 10.4 and earlier tools do not allow a second -install_name on command line
57 DARWIN_VERS := $(shell echo $(TARGET_TRIPLE) | sed 's/.*darwin\([0-9]*\).*/\1/')
58 ifneq ($(DARWIN_VERS),8)
59 LLVMLibsOptions := $(LLVMLibsOptions) \
61 -Wl,"@rpath/lib$(LIBRARYNAME)$(SHLIBEXT)"
65 ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux FreeBSD GNU/kFreeBSD OpenBSD GNU Bitrig))
66 # Include everything from the .a's into the shared library.
67 LLVMLibsOptions := -Wl,--whole-archive $(LLVMLibsOptions) \
68 -Wl,--no-whole-archive
71 ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux FreeBSD GNU/kFreeBSD GNU))
72 # Add soname to the library.
73 LLVMLibsOptions += -Wl,--soname,lib$(LIBRARYNAME)$(SHLIBEXT)
76 ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux GNU GNU/kFreeBSD))
77 # Don't allow unresolved symbols.
78 LLVMLibsOptions += -Wl,--no-undefined
81 ifeq ($(HOST_OS),SunOS)
82 # add -z allextract ahead of other libraries on Solaris
83 LLVMLibsOptions := -Wl,-z -Wl,allextract $(LLVMLibsOptions)
86 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
88 SHLIB_STUBS := $(addprefix $(ObjDir)/, $(SHLIB_FRAG_NAMES))
89 SHLIB_FRAGS := $(patsubst %.a.o, $(ObjDir)/%.syms.txt, $(LIBRARYNAME).a.o $(SHLIB_FRAG_NAMES))
90 LLVMLibsOptions := $(SHLIB_STUBS) $(LLVMLibsOptions)
92 $(LibName.SO): $(SHLIB_STUBS)
95 $(Echo) Collecting global symbols of $(notdir $*)
96 $(Verb) $(NM_PATH) -g $< > $@
98 $(ObjDir)/$(LIBRARYNAME).exports: $(SHLIB_FRAGS) $(ObjDir)/.dir
99 $(Echo) Generating exports for $(LIBRARYNAME)
101 -e "s/^.* T _\([^.][^.]*\)$$/\1/p" \
102 -e "s/^.* [BDR] _\([^.][^.]*\)$$/\1 DATA/p" \
106 $(ObjDir)/$(LIBRARYNAME).a.o: $(LLVMLibsPaths) $(ObjDir)/.dir
107 $(Echo) Linking all LLVMLibs together for $(LIBRARYNAME)
108 $(Verb) $(Link) -nostartfiles -Wl,-r -nodefaultlibs -o $@ \
109 -Wl,--whole-archive $(LLVMLibsPaths) \
110 -Wl,--no-whole-archive
112 $(ObjDir)/stdc++.a.o: $(ObjDir)/.dir
113 $(Echo) Linking all libs together for static libstdc++.a
114 $(Verb) $(Link) -nostartfiles -Wl,-r -nodefaultlibs -o $@ \
115 -Wl,--whole-archive -lstdc++ \
116 -Wl,--no-whole-archive
117 # FIXME: workaround to invalidate -lstdc++
118 $(Echo) Making dummy -lstdc++ to lib
119 $(Verb) $(AR) rc $(ToolDir)/libstdc++.dll.a
120 # FIXME: Is install-local needed?
123 $(Verb) $(RM) -f $(ToolDir)/libstdc++.dll.a