main.py (7974:13692327bb0b) main.py (8126:5138d1e453f1)
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

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

172
173 done = False
174
175 if options.build_info:
176 done = True
177 print 'Build information:'
178 print
179 print 'compiled %s' % defines.compileDate;
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

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

172
173 done = False
174
175 if options.build_info:
176 done = True
177 print 'Build information:'
178 print
179 print 'compiled %s' % defines.compileDate;
180 print "revision %s" % defines.hgRev
181 print 'build options:'
182 keys = defines.buildEnv.keys()
183 keys.sort()
184 for key in keys:
185 val = defines.buildEnv[key]
186 print ' %s = %s' % (key, val)
187 print
188

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

240
241 verbose = options.verbose - options.quiet
242 if options.verbose >= 0:
243 print "M5 Simulator System"
244 print brief_copyright
245 print
246
247 print "M5 compiled %s" % defines.compileDate;
180 print 'build options:'
181 keys = defines.buildEnv.keys()
182 keys.sort()
183 for key in keys:
184 val = defines.buildEnv[key]
185 print ' %s = %s' % (key, val)
186 print
187

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

239
240 verbose = options.verbose - options.quiet
241 if options.verbose >= 0:
242 print "M5 Simulator System"
243 print brief_copyright
244 print
245
246 print "M5 compiled %s" % defines.compileDate;
248 print "M5 revision %s" % defines.hgRev
249
250 print "M5 started %s" % datetime.datetime.now().strftime("%b %e %Y %X")
251 print "M5 executing on %s" % socket.gethostname()
252
253 print "command line:",
254 for argv in sys.argv:
255 print argv,
256 print

--- 114 unchanged lines hidden ---
247
248 print "M5 started %s" % datetime.datetime.now().strftime("%b %e %Y %X")
249 print "M5 executing on %s" % socket.gethostname()
250
251 print "command line:",
252 for argv in sys.argv:
253 print argv,
254 print

--- 114 unchanged lines hidden ---