main.py (11299:72046b9b3323) | main.py (11304:d06e5a6b4b7f) |
---|---|
1# Copyright (c) 2005 The Regents of The University of Michigan 2# All rights reserved. 3# 4# Redistribution and use in source and binary forms, with or without 5# modification, are permitted provided that the following conditions are 6# met: redistributions of source code must retain the above copyright 7# notice, this list of conditions and the following disclaimer; 8# redistributions in binary form must reproduce the above copyright --- 88 unchanged lines hidden (view full) --- 97 option("--debug-break", metavar="TICK[,TICK]", action='append', split=',', 98 help="Create breakpoint(s) at TICK(s) " \ 99 "(kills process if no debugger attached)") 100 option("--debug-help", action='store_true', 101 help="Print help on debug flags") 102 option("--debug-flags", metavar="FLAG[,FLAG]", action='append', split=',', 103 help="Sets the flags for debug output (-FLAG disables a flag)") 104 option("--debug-start", metavar="TICK", type='int', | 1# Copyright (c) 2005 The Regents of The University of Michigan 2# All rights reserved. 3# 4# Redistribution and use in source and binary forms, with or without 5# modification, are permitted provided that the following conditions are 6# met: redistributions of source code must retain the above copyright 7# notice, this list of conditions and the following disclaimer; 8# redistributions in binary form must reproduce the above copyright --- 88 unchanged lines hidden (view full) --- 97 option("--debug-break", metavar="TICK[,TICK]", action='append', split=',', 98 help="Create breakpoint(s) at TICK(s) " \ 99 "(kills process if no debugger attached)") 100 option("--debug-help", action='store_true', 101 help="Print help on debug flags") 102 option("--debug-flags", metavar="FLAG[,FLAG]", action='append', split=',', 103 help="Sets the flags for debug output (-FLAG disables a flag)") 104 option("--debug-start", metavar="TICK", type='int', |
105 help="Start debug output at TICK (must be in ticks)") | 105 help="Start debug output at TICK") |
106 option("--debug-file", metavar="FILE", default="cout", 107 help="Sets the output file for debug [Default: %default]") 108 option("--debug-ignore", metavar="EXPR", action='append', split=':', 109 help="Ignore EXPR sim objects") 110 option("--remote-gdb-port", type='int', default=7000, 111 help="Remote gdb base port (set to 0 to disable listening)") 112 113 # Help options --- 293 unchanged lines hidden --- | 106 option("--debug-file", metavar="FILE", default="cout", 107 help="Sets the output file for debug [Default: %default]") 108 option("--debug-ignore", metavar="EXPR", action='append', split=':', 109 help="Ignore EXPR sim objects") 110 option("--remote-gdb-port", type='int', default=7000, 111 help="Remote gdb base port (set to 0 to disable listening)") 112 113 # Help options --- 293 unchanged lines hidden --- |