3561791104
ludes minor changes relative to upstream, for compatibility with FreeBSD's in-tree LLVM 3.3: - Reverted LLDB r191806, restoring use of previous API. - Reverted part of LLDB r189317, restoring previous enum names. - Work around missing LLVM r192504, using previous registerEHFrames API (limited functionality). - Removed PlatformWindows header include and init/terminate calls. Sponsored by: DARPA, AFRL
36 lines
616 B
Makefile
36 lines
616 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= lldbDataFormatters
|
|
|
|
SRCDIR= tools/lldb/source/DataFormatters
|
|
SRCS= CF.cpp \
|
|
Cocoa.cpp \
|
|
CXXFormatterFunctions.cpp \
|
|
DataVisualization.cpp \
|
|
FormatCache.cpp \
|
|
FormatClasses.cpp \
|
|
FormatManager.cpp \
|
|
LibCxx.cpp \
|
|
LibCxxList.cpp \
|
|
LibCxxMap.cpp \
|
|
LibCxxUnorderedMap.cpp \
|
|
LibStdcpp.cpp \
|
|
NSArray.cpp \
|
|
NSDictionary.cpp \
|
|
NSSet.cpp \
|
|
TypeCategory.cpp \
|
|
TypeCategoryMap.cpp \
|
|
TypeFormat.cpp \
|
|
TypeSummary.cpp \
|
|
TypeSynthetic.cpp \
|
|
ValueObjectPrinter.cpp
|
|
|
|
TGHDRS= DiagnosticCommonKinds \
|
|
DeclNodes \
|
|
StmtNodes \
|
|
CommentCommandList
|
|
|
|
.include "../lldb.lib.mk"
|