forked from OSchip/llvm-project
Xcode: Include DWARFUnit.{h,cpp} in the build
This should address a bot failure due to r327809. llvm-svn: 327865
This commit is contained in:
parent
01f414baaa
commit
a6137e2b23
|
@ -774,6 +774,8 @@
|
|||
6D99A3631BBC2F3200979793 /* ArmUnwindInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6D99A3621BBC2F3200979793 /* ArmUnwindInfo.cpp */; };
|
||||
6D9AB3DD1BB2B74E003F2289 /* TypeMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6D9AB3DC1BB2B74E003F2289 /* TypeMap.cpp */; };
|
||||
6DEC6F391BD66D750091ABA6 /* TaskPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DEC6F381BD66D750091ABA6 /* TaskPool.cpp */; };
|
||||
7F2AAA5A20601BE000A422D8 /* DWARFUnit.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7F2AAA5820601BDF00A422D8 /* DWARFUnit.h */; };
|
||||
7F2AAA5B20601BE000A422D8 /* DWARFUnit.cpp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7F2AAA5920601BE000A422D8 /* DWARFUnit.cpp */; };
|
||||
7F94D7182040A13A006EE3EA /* CleanUpTest.cpp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7F94D7172040A13A006EE3EA /* CleanUpTest.cpp */; };
|
||||
8C26C4261C3EA5F90031DF7C /* TSanRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C26C4241C3EA4340031DF7C /* TSanRuntime.cpp */; };
|
||||
8C2D6A53197A1EAF006989C9 /* MemoryHistory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C2D6A52197A1EAF006989C9 /* MemoryHistory.cpp */; };
|
||||
|
@ -1247,7 +1249,9 @@
|
|||
dstPath = "$(DEVELOPER_INSTALL_DIR)/usr/share/man/man1";
|
||||
dstSubfolderSpec = 0;
|
||||
files = (
|
||||
7F2AAA5A20601BE000A422D8 /* DWARFUnit.h in CopyFiles */,
|
||||
7F94D7182040A13A006EE3EA /* CleanUpTest.cpp in CopyFiles */,
|
||||
7F2AAA5B20601BE000A422D8 /* DWARFUnit.cpp in CopyFiles */,
|
||||
AF90106515AB7D3600FF120D /* lldb.1 in CopyFiles */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 1;
|
||||
|
@ -2682,6 +2686,8 @@
|
|||
6D9AB3DE1BB2B76B003F2289 /* TypeMap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = TypeMap.h; path = include/lldb/Symbol/TypeMap.h; sourceTree = "<group>"; };
|
||||
6DEC6F381BD66D750091ABA6 /* TaskPool.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TaskPool.cpp; path = source/Host/common/TaskPool.cpp; sourceTree = "<group>"; };
|
||||
6DEC6F3A1BD66D950091ABA6 /* TaskPool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TaskPool.h; path = include/lldb/Host/TaskPool.h; sourceTree = "<group>"; };
|
||||
7F2AAA5820601BDF00A422D8 /* DWARFUnit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DWARFUnit.h; sourceTree = "<group>"; };
|
||||
7F2AAA5920601BE000A422D8 /* DWARFUnit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DWARFUnit.cpp; sourceTree = "<group>"; };
|
||||
7F94D7172040A13A006EE3EA /* CleanUpTest.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CleanUpTest.cpp; sourceTree = "<group>"; };
|
||||
8C26C4241C3EA4340031DF7C /* TSanRuntime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TSanRuntime.cpp; path = TSan/TSanRuntime.cpp; sourceTree = "<group>"; };
|
||||
8C26C4251C3EA4340031DF7C /* TSanRuntime.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = TSanRuntime.h; path = TSan/TSanRuntime.h; sourceTree = "<group>"; };
|
||||
|
@ -3875,6 +3881,8 @@
|
|||
260C89B210F57C5600BB2B04 /* DWARF */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7F2AAA5920601BE000A422D8 /* DWARFUnit.cpp */,
|
||||
7F2AAA5820601BDF00A422D8 /* DWARFUnit.h */,
|
||||
6D95DC031B9DC06F000E318A /* DIERef.h */,
|
||||
6D95DC041B9DC06F000E318A /* SymbolFileDWARFDwo.h */,
|
||||
6D95DBFD1B9DC057000E318A /* DIERef.cpp */,
|
||||
|
|
Loading…
Reference in New Issue