SConscript (13961:3139b24cd76d) SConscript (14205:197360deaa20)
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

--- 67 unchanged lines hidden (view full) ---

76Source('loader/dtb_object.cc')
77Source('loader/ecoff_object.cc')
78Source('loader/elf_object.cc')
79Source('loader/hex_file.cc')
80Source('loader/object_file.cc')
81Source('loader/raw_object.cc')
82Source('loader/symtab.cc')
83
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

--- 67 unchanged lines hidden (view full) ---

76Source('loader/dtb_object.cc')
77Source('loader/ecoff_object.cc')
78Source('loader/elf_object.cc')
79Source('loader/hex_file.cc')
80Source('loader/object_file.cc')
81Source('loader/raw_object.cc')
82Source('loader/symtab.cc')
83
84Source('stats/group.cc')
84Source('stats/text.cc')
85
86GTest('addr_range.test', 'addr_range.test.cc')
87GTest('addr_range_map.test', 'addr_range_map.test.cc')
88GTest('bitunion.test', 'bitunion.test.cc')
89GTest('circlebuf.test', 'circlebuf.test.cc')
90GTest('circular_queue.test', 'circular_queue.test.cc')
91GTest('sat_counter.test', 'sat_counter.test.cc')

--- 4 unchanged lines hidden (view full) ---

96DebugFlag('GDBAcc', "Remote debugger accesses")
97DebugFlag('GDBExtra', "Dump extra information on reads and writes")
98DebugFlag('GDBMisc', "Breakpoints, traps, watchpoints, etc.")
99DebugFlag('GDBRead', "Reads to the remote address space")
100DebugFlag('GDBRecv', "Messages received from the remote application")
101DebugFlag('GDBSend', "Messages sent to the remote application")
102DebugFlag('GDBWrite', "Writes to the remote address space")
103DebugFlag('SQL', "SQL queries sent to the server")
85Source('stats/text.cc')
86
87GTest('addr_range.test', 'addr_range.test.cc')
88GTest('addr_range_map.test', 'addr_range_map.test.cc')
89GTest('bitunion.test', 'bitunion.test.cc')
90GTest('circlebuf.test', 'circlebuf.test.cc')
91GTest('circular_queue.test', 'circular_queue.test.cc')
92GTest('sat_counter.test', 'sat_counter.test.cc')

--- 4 unchanged lines hidden (view full) ---

97DebugFlag('GDBAcc', "Remote debugger accesses")
98DebugFlag('GDBExtra', "Dump extra information on reads and writes")
99DebugFlag('GDBMisc', "Breakpoints, traps, watchpoints, etc.")
100DebugFlag('GDBRead', "Reads to the remote address space")
101DebugFlag('GDBRecv', "Messages received from the remote application")
102DebugFlag('GDBSend', "Messages sent to the remote application")
103DebugFlag('GDBWrite', "Writes to the remote address space")
104DebugFlag('SQL', "SQL queries sent to the server")
105DebugFlag('Stats', "Statistics management")
104DebugFlag('StatEvents', "Statistics event tracking")
105
106CompoundFlag('GDBAll',
107 [ 'GDBMisc', 'GDBAcc', 'GDBRead', 'GDBWrite', 'GDBSend', 'GDBRecv',
108 'GDBExtra' ],
109 desc="All Remote debugging flags")
110CompoundFlag('AnnotateAll', ['Annotate', 'AnnotateQ', 'AnnotateVerbose'],
111 desc="All Annotation flags")
112
106DebugFlag('StatEvents', "Statistics event tracking")
107
108CompoundFlag('GDBAll',
109 [ 'GDBMisc', 'GDBAcc', 'GDBRead', 'GDBWrite', 'GDBSend', 'GDBRecv',
110 'GDBExtra' ],
111 desc="All Remote debugging flags")
112CompoundFlag('AnnotateAll', ['Annotate', 'AnnotateQ', 'AnnotateVerbose'],
113 desc="All Annotation flags")
114