main.py (4074:f2c4afa8cd46) main.py (4078:3f73f808bbd4)
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

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

259 internal.main.setOutputDir(options.outdir)
260
261 # update the system path with elements from the -p option
262 sys.path[0:0] = options.path
263
264 import objects
265
266 # set stats options
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

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

259 internal.main.setOutputDir(options.outdir)
260
261 # update the system path with elements from the -p option
262 sys.path[0:0] = options.path
263
264 import objects
265
266 # set stats options
267 objects.Statistics.text_file = options.stats_file
267 internal.stats.initText(options.stats_file)
268
269 # set debugging options
270 for when in options.debug_break:
271 internal.debug.schedBreakCycle(int(when))
272
273 on_flags = []
274 off_flags = []
275 for flag in options.trace_flags:

--- 66 unchanged lines hidden ---
268
269 # set debugging options
270 for when in options.debug_break:
271 internal.debug.schedBreakCycle(int(when))
272
273 on_flags = []
274 off_flags = []
275 for flag in options.trace_flags:

--- 66 unchanged lines hidden ---