Link in Python interpreter.
authorSteve Reinhardt <stever@eecs.umich.edu>
Tue, 30 May 2006 17:11:34 +0000 (13:11 -0400)
committerSteve Reinhardt <stever@eecs.umich.edu>
Tue, 30 May 2006 17:11:34 +0000 (13:11 -0400)
commit0337db3388db335ea23f02f3aa00bca9d483ef1c
tree8293d1d4e9520acabde7e37bd0a065467147ba87
parentd308055afc1ace1f321b76e8a85a9a45165da2ce
Link in Python interpreter.
Use embedded zip archive to carry Python code instead
of homegrown embedded string/file mechanism.
Do argument parsing in Python instead of C++.

SConstruct:
    Add Python interpreter include path & library.
    Define two new simple builders which copy &
    concatenate files, respectively, for use by
    the Python embedded zipfile code.
src/SConscript:
    Encapsulate environment creation in a function.
    Add code to append Python zip archive to final executable.
    Eliminate references to obsolete files.
src/python/SConscript:
    Rewrite to generate embedded zip archive of Python code
    (replacing old "embedded string" mechanism).
src/python/m5/__init__.py:
    Move main arg-parsing loop here (out of C++ main()).
src/python/m5/config.py:
    Minor fix (version incompatibility?).
src/sim/main.cc:
    Invoke embedded Python interpreter to parse args
    and generate config.ini, replacing C++ arg parsing code.

--HG--
extra : convert_revision : 72d21236b2bee139ff39ba4cf031a4a1f8560029
SConstruct
src/SConscript
src/python/SConscript
src/python/m5/__init__.py
src/python/m5/config.py
src/sim/main.cc