[Haiku-commits] r31064 - in haiku/trunk/src/apps/debugger: . dwarf
bonefish at mail.berlios.de
bonefish at mail.berlios.de
Mon Jun 15 23:50:16 CEST 2009
Author: bonefish
Date: 2009-06-15 23:50:04 +0200 (Mon, 15 Jun 2009)
New Revision: 31064
ViewCVS: http://svn.berlios.de/viewcvs/haiku?rev=31064&view=rev
Added:
haiku/trunk/src/apps/debugger/dwarf/
haiku/trunk/src/apps/debugger/dwarf/AttributeValue.cpp
haiku/trunk/src/apps/debugger/dwarf/AttributeValue.h
haiku/trunk/src/apps/debugger/dwarf/DataReader.h
haiku/trunk/src/apps/debugger/dwarf/DebugInfoEntries.cpp
haiku/trunk/src/apps/debugger/dwarf/DebugInfoEntries.h
haiku/trunk/src/apps/debugger/dwarf/DebugInfoEntry.cpp
haiku/trunk/src/apps/debugger/dwarf/DebugInfoEntry.h
haiku/trunk/src/apps/debugger/dwarf/DwarfManager.cpp
haiku/trunk/src/apps/debugger/dwarf/DwarfManager.h
haiku/trunk/src/apps/debugger/dwarf/SourceLanguageInfo.cpp
haiku/trunk/src/apps/debugger/dwarf/SourceLanguageInfo.h
haiku/trunk/src/apps/debugger/dwarf/attribute_classes.cpp
haiku/trunk/src/apps/debugger/dwarf/attribute_classes.h
haiku/trunk/src/apps/debugger/dwarf/dwarf.h
haiku/trunk/src/apps/debugger/dwarf/tag_names.cpp
haiku/trunk/src/apps/debugger/dwarf/tag_names.h
haiku/trunk/src/apps/debugger/dwarf/types.h
Removed:
haiku/trunk/src/apps/debugger/AttributeValue.cpp
haiku/trunk/src/apps/debugger/AttributeValue.h
haiku/trunk/src/apps/debugger/DataReader.h
haiku/trunk/src/apps/debugger/DebugInfoEntries.cpp
haiku/trunk/src/apps/debugger/DebugInfoEntries.h
haiku/trunk/src/apps/debugger/DebugInfoEntry.cpp
haiku/trunk/src/apps/debugger/DebugInfoEntry.h
haiku/trunk/src/apps/debugger/DwarfManager.cpp
haiku/trunk/src/apps/debugger/DwarfManager.h
haiku/trunk/src/apps/debugger/SourceLanguageInfo.cpp
haiku/trunk/src/apps/debugger/SourceLanguageInfo.h
haiku/trunk/src/apps/debugger/attribute_classes.cpp
haiku/trunk/src/apps/debugger/attribute_classes.h
haiku/trunk/src/apps/debugger/dwarf.h
haiku/trunk/src/apps/debugger/tag_names.cpp
haiku/trunk/src/apps/debugger/tag_names.h
haiku/trunk/src/apps/debugger/types.h
Modified:
haiku/trunk/src/apps/debugger/Jamfile
Log:
Moved dwarf related code into dwarf/ subdirectory.
Deleted: haiku/trunk/src/apps/debugger/AttributeValue.cpp
Deleted: haiku/trunk/src/apps/debugger/AttributeValue.h
Deleted: haiku/trunk/src/apps/debugger/DataReader.h
Deleted: haiku/trunk/src/apps/debugger/DebugInfoEntries.cpp
Deleted: haiku/trunk/src/apps/debugger/DebugInfoEntries.h
Deleted: haiku/trunk/src/apps/debugger/DebugInfoEntry.cpp
Deleted: haiku/trunk/src/apps/debugger/DebugInfoEntry.h
Deleted: haiku/trunk/src/apps/debugger/DwarfManager.cpp
Deleted: haiku/trunk/src/apps/debugger/DwarfManager.h
Modified: haiku/trunk/src/apps/debugger/Jamfile
===================================================================
--- haiku/trunk/src/apps/debugger/Jamfile 2009-06-15 21:49:42 UTC (rev 31063)
+++ haiku/trunk/src/apps/debugger/Jamfile 2009-06-15 21:50:04 UTC (rev 31064)
@@ -7,15 +7,17 @@
UsePrivateSystemHeaders ;
Application Debugger :
- attribute_classes.cpp
- AttributeValue.cpp
debugger.cpp
- DebugInfoEntries.cpp
- DebugInfoEntry.cpp
- DwarfManager.cpp
ElfFile.cpp
- SourceLanguageInfo.cpp
- tag_names.cpp
+# DWARF
+# attribute_classes.cpp
+# AttributeValue.cpp
+# DebugInfoEntries.cpp
+# DebugInfoEntry.cpp
+# DwarfManager.cpp
+# SourceLanguageInfo.cpp
+3 tag_names.cpp
+
: $(TARGET_LIBSUPC++)
;
Deleted: haiku/trunk/src/apps/debugger/SourceLanguageInfo.cpp
Deleted: haiku/trunk/src/apps/debugger/SourceLanguageInfo.h
Deleted: haiku/trunk/src/apps/debugger/attribute_classes.cpp
Deleted: haiku/trunk/src/apps/debugger/attribute_classes.h
Copied: haiku/trunk/src/apps/debugger/dwarf/AttributeValue.cpp (from rev 31047, haiku/trunk/src/apps/debugger/AttributeValue.cpp)
Copied: haiku/trunk/src/apps/debugger/dwarf/AttributeValue.h (from rev 31056, haiku/trunk/src/apps/debugger/AttributeValue.h)
Copied: haiku/trunk/src/apps/debugger/dwarf/DataReader.h (from rev 31047, haiku/trunk/src/apps/debugger/DataReader.h)
Copied: haiku/trunk/src/apps/debugger/dwarf/DebugInfoEntries.cpp (from rev 31056, haiku/trunk/src/apps/debugger/DebugInfoEntries.cpp)
Copied: haiku/trunk/src/apps/debugger/dwarf/DebugInfoEntries.h (from rev 31056, haiku/trunk/src/apps/debugger/DebugInfoEntries.h)
Copied: haiku/trunk/src/apps/debugger/dwarf/DebugInfoEntry.cpp (from rev 31056, haiku/trunk/src/apps/debugger/DebugInfoEntry.cpp)
Copied: haiku/trunk/src/apps/debugger/dwarf/DebugInfoEntry.h (from rev 31056, haiku/trunk/src/apps/debugger/DebugInfoEntry.h)
Copied: haiku/trunk/src/apps/debugger/dwarf/DwarfManager.cpp (from rev 31047, haiku/trunk/src/apps/debugger/DwarfManager.cpp)
Copied: haiku/trunk/src/apps/debugger/dwarf/DwarfManager.h (from rev 31047, haiku/trunk/src/apps/debugger/DwarfManager.h)
Copied: haiku/trunk/src/apps/debugger/dwarf/SourceLanguageInfo.cpp (from rev 31047, haiku/trunk/src/apps/debugger/SourceLanguageInfo.cpp)
Copied: haiku/trunk/src/apps/debugger/dwarf/SourceLanguageInfo.h (from rev 31047, haiku/trunk/src/apps/debugger/SourceLanguageInfo.h)
Copied: haiku/trunk/src/apps/debugger/dwarf/attribute_classes.cpp (from rev 31047, haiku/trunk/src/apps/debugger/attribute_classes.cpp)
Copied: haiku/trunk/src/apps/debugger/dwarf/attribute_classes.h (from rev 31047, haiku/trunk/src/apps/debugger/attribute_classes.h)
Copied: haiku/trunk/src/apps/debugger/dwarf/dwarf.h (from rev 31047, haiku/trunk/src/apps/debugger/dwarf.h)
Copied: haiku/trunk/src/apps/debugger/dwarf/tag_names.cpp (from rev 31047, haiku/trunk/src/apps/debugger/tag_names.cpp)
Copied: haiku/trunk/src/apps/debugger/dwarf/tag_names.h (from rev 31047, haiku/trunk/src/apps/debugger/tag_names.h)
Copied: haiku/trunk/src/apps/debugger/dwarf/types.h (from rev 31047, haiku/trunk/src/apps/debugger/types.h)
Deleted: haiku/trunk/src/apps/debugger/dwarf.h
Deleted: haiku/trunk/src/apps/debugger/tag_names.cpp
Deleted: haiku/trunk/src/apps/debugger/tag_names.h
Deleted: haiku/trunk/src/apps/debugger/types.h
More information about the Haiku-commits
mailing list