- Timestamp:
- 01/31/12 05:12:05 (4 months ago)
- Location:
- simo/trunk/dev
- Files:
-
- 3 added
- 4 deleted
- 2 edited
-
msvcr90 (added)
-
msvcr90/vcredist_x86.exe (added)
-
pyinstaller/Microsoft.VC90.CRT.manifest (deleted)
-
pyinstaller/build.py (modified) (3 diffs)
-
pyinstaller/msvcm90.dll (deleted)
-
pyinstaller/msvcp90.dll (deleted)
-
pyinstaller/msvcr71.dll (added)
-
pyinstaller/msvcr90.dll (deleted)
-
pyinstaller/simo_onedir.spec (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
simo/trunk/dev/pyinstaller/build.py
r2279 r2702 22 22 23 23 SIMO_SPEC = 'simo_onedir.spec' 24 SIMO_SPEC_26 = 'simo26.spec'25 24 26 25 def build(pyinstaller_path): … … 46 45 print 'Executing Build.py for runner...' 47 46 build_py = os.path.join(pyinstaller_path, 'Build.py') 48 if sys.version_info[0:2] == (2, 6): 49 specfile = SIMO_SPEC_26 50 print 'using %s' % specfile 51 if not (os.path.exists('Microsoft.VC90.CRT.manifest') and \ 52 os.path.exists('msvcm90.dll') and \ 53 os.path.exists('msvcp90.dll') and \ 54 os.path.exists('msvcr90.dll')): 55 print 'You need to have Microsoft.VC90.CRT.manifest, '\ 56 'msvcm90.dll, msvcp90.dll and msvcr90.dll in this folder!' 57 print 'Default location is C:\Program Files\Microsoft '\ 58 'Visual Studio 9.0\VC\redist\x86\Microsoft.VC90.CRT' 59 sys.exit(1) 60 else: 61 specfile = SIMO_SPEC 62 print 'using %s' % specfile 47 specfile = SIMO_SPEC 48 print 'using %s' % specfile 63 49 cmd = ' '.join(['python', build_py, specfile]) 64 50 os.system(cmd) … … 97 83 shutil.copy('dist/builder/builder.exe', target) 98 84 shutil.copy('dist/logger/logger.exe', target) 85 shutil.copy('msvcr71.dll', target) 86 shutil.copy('../msvcr90/vcredist_x86.exe', target) 99 87 100 88 print 'and now the simulator folder' -
simo/trunk/dev/pyinstaller/simo_onedir.spec
r2697 r2702 46 46 ('CFGMGR.dll', '', ''), 47 47 ('DEVOBJ.dll', '', ''), 48 ('MSASN1.dll', '', ''),] 48 ('MSASN1.dll', '', ''), 49 ('Microsoft.VC90.CRT.manifest', '', ''), 50 ('msvcm90.dll', '', ''), 51 ('msvcp90.dll', '', ''), 52 ('msvcr90.dll', '', ''),] 49 53 50 54 ########################
Note: See TracChangeset
for help on using the changeset viewer.
