Prebuild object file with MSVC.

pull/15/head
Jussi Pakkanen 11 years ago
parent 15128ab6bc
commit b7bdf5b7bd
  1. 5
      run_tests.py

@ -270,13 +270,14 @@ def generate_prebuilt_object():
objectbase = 'test cases/prebuilt object/1 basic/prebuilt.'
if shutil.which('cl'):
objectfile = objectbase + 'obj'
raise RuntimeError('MSVC compilation not done yet.')
cmd = ['cl', '/nologo', '/Fo'+objectfile, '/c', source]
else:
if is_windows():
objectfile = objectbase + 'obj'
else:
objectfile = objectbase + 'o'
subprocess.check_call(['cc', '-c', source, '-o', objectfile])
cmd = ['cc', '-c', source, '-o', objectfile]
subprocess.check_call(cmd)
return objectfile
if __name__ == '__main__':

Loading…
Cancel
Save