blob: 75f0673819a6891851c6a8489262ef3de73fff52 [file] [log] [blame]
Greg Clayton54e7afa2010-07-09 20:39:50 +00001##===- source/Makefile -------------------------------------*- Makefile -*-===##
2#
3# The LLVM Compiler Infrastructure
4#
5# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
7#
8##===----------------------------------------------------------------------===##
9
10LEVEL := ../../..
11LLDB_LEVEL := ..
12
13LIBRARYNAME = lldb
14
15#EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/../resources/lldb-framework-exports
16NO_BUILD_ARCHIVE = 1
17LINK_LIBS_IN_SHARED = 1
18SHARED_LIBRARY = 1
19
Greg Clayton1a2f3112011-02-05 02:32:19 +000020PYTHON_BUILD_FLAGS = -lpython2.6
21
Greg Clayton54e7afa2010-07-09 20:39:50 +000022# Include all archives in liblldb.a files
23USEDLIBS = lldbAPI.a \
24 lldbBreakpoint.a \
25 lldbCommands.a \
26 lldbCore.a \
27 lldbExpression.a \
Greg Clayton8f3b21d2010-09-07 20:11:56 +000028 lldbHostCommon.a \
Greg Clayton54e7afa2010-07-09 20:39:50 +000029 lldbInitAndLog.a \
30 lldbInterpreter.a \
31 lldbPluginABIMacOSX_i386.a \
32 lldbPluginABISysV_x86_64.a \
33 lldbPluginDisassemblerLLVM.a \
Greg Clayton54e7afa2010-07-09 20:39:50 +000034 lldbPluginObjectContainerBSDArchive.a \
Greg Clayton54e7afa2010-07-09 20:39:50 +000035 lldbPluginObjectFileELF.a \
Greg Clayton54e7afa2010-07-09 20:39:50 +000036 lldbPluginSymbolFileDWARF.a \
37 lldbPluginSymbolFileSymtab.a \
Stephen Wilson64dd0d72011-01-06 22:11:47 +000038 lldbPluginUtility.a \
Greg Clayton54e7afa2010-07-09 20:39:50 +000039 lldbSymbol.a \
40 lldbTarget.a \
41 lldbUtility.a \
Greg Clayton54e7afa2010-07-09 20:39:50 +000042 clangAnalysis.a \
43 clangAST.a \
44 clangBasic.a \
45 clangCodeGen.a \
46 clangFrontend.a \
47 clangDriver.a \
48 clangIndex.a \
49 clangLex.a \
50 clangRewrite.a \
51 clangParse.a \
52 clangSema.a \
Stephen Wilson64dd0d72011-01-06 22:11:47 +000053 clangSerialization.a \
Stephen Wilsonb6b6fae2011-01-25 23:03:42 +000054 EnhancedDisassembly.a
Greg Clayton54e7afa2010-07-09 20:39:50 +000055
Eli Friedman26f93ce2010-07-09 22:11:43 +000056include $(LLDB_LEVEL)/../../Makefile.config
57
58LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader bitwriter codegen \
Stephen Wilson64dd0d72011-01-06 22:11:47 +000059 ipo selectiondag jit mc
Eli Friedman26f93ce2010-07-09 22:11:43 +000060
61ifeq ($(HOST_OS),Darwin)
62 USEDLIBS += lldbHostMacOSX.a \
63 lldbPluginDynamicLoaderMacOSX.a \
64 lldbPluginObjectContainerUniversalMachO.a \
65 lldbPluginObjectFileMachO.a \
66 lldbPluginProcessGDBRemote.a \
Stephen Wilsona3f015e2010-07-24 05:18:16 +000067 lldbPluginSymbolVendorMacOSX.a
Eli Friedman26f93ce2010-07-09 22:11:43 +000068endif
69
70ifeq ($(HOST_OS),Linux)
Stephen Wilson92241ef2011-01-16 19:45:39 +000071 USEDLIBS += lldbPluginProcessLinux.a \
72 lldbPluginDynamicLoaderLinux.a
Eli Friedman26f93ce2010-07-09 22:11:43 +000073endif
74
Greg Clayton54e7afa2010-07-09 20:39:50 +000075include $(LEVEL)/Makefile.common
76
Greg Clayton54e7afa2010-07-09 20:39:50 +000077ifeq ($(HOST_OS),Darwin)
Eli Friedman26f93ce2010-07-09 22:11:43 +000078 LLVMLibsOptions += -Wl,-all_load
Greg Clayton54e7afa2010-07-09 20:39:50 +000079 # set dylib internal version number to llvmCore submission number
80 ifdef LLDB_SUBMIT_VERSION
81 LLVMLibsOptions += -Wl,-current_version \
82 -Wl,$(LLDB_SUBMIT_VERSION).$(LLDB_SUBMIT_SUBVERSION) \
83 -Wl,-compatibility_version -Wl,1
84 endif
85 # extra options to override libtool defaults
86 LLVMLibsOptions += -avoid-version
87 LLVMLibsOptions += -F/System/Library/Frameworks -F/System/Library/PrivateFrameworks
88 LLVMLibsOptions += -framework Foundation -framework CoreFoundation
Greg Clayton1a2f3112011-02-05 02:32:19 +000089 LLVMLibsOptions += -framework DebugSymbols $(PYTHON_BUILD_FLAGS) -lobjc
Greg Clayton980d0672010-07-12 23:14:00 +000090 LLVMLibsOptions += -Wl,-exported_symbols_list -Wl,"$(PROJ_SRC_DIR)/$(LLDB_LEVEL)/resources/lldb-framework-exports"
Greg Clayton54e7afa2010-07-09 20:39:50 +000091 # Mac OS X 10.4 and earlier tools do not allow a second -install_name on command line
92 DARWIN_VERS := $(shell echo $(TARGET_TRIPLE) | sed 's/.*darwin\([0-9]*\).*/\1/')
93 ifneq ($(DARWIN_VERS),8)
94 LLVMLibsOptions += -no-undefined -Wl,-install_name \
95 -Wl,"@executable_path/../lib/lib$(LIBRARYNAME)$(SHLIBEXT)"
96 endif
97endif
98
99ifeq ($(HOST_OS), Linux)
100 # Include everything from the .a's into the shared library.
Eli Friedman26f93ce2010-07-09 22:11:43 +0000101 ProjLibsOptions := -Wl,--whole-archive $(ProjLibsOptions) \
Greg Clayton54e7afa2010-07-09 20:39:50 +0000102 -Wl,--no-whole-archive
103 # Don't allow unresolved symbols.
104 LLVMLibsOptions += -Wl,--no-undefined
Eli Friedman26f93ce2010-07-09 22:11:43 +0000105 # Link in python
Greg Clayton1a2f3112011-02-05 02:32:19 +0000106 LD.Flags += $(PYTHON_BUILD_FLAGS)
Greg Clayton54e7afa2010-07-09 20:39:50 +0000107endif