[test_swfinterp] Correct compilation on modern mxmlc versions

This commit is contained in:
Philipp Hagemeister 2014-11-02 11:41:33 +01:00
parent ecc0c5ee01
commit 39f0a2a6b7
1 changed files with 3 additions and 1 deletions

View File

@ -37,7 +37,9 @@ def _make_testfunc(testfile):
or os.path.getmtime(swf_file) < os.path.getmtime(as_file)):
# Recompile
try:
subprocess.check_call(['mxmlc', '-output', swf_file, as_file])
subprocess.check_call([
'mxmlc', '-output', swf_file,
'-static-link-runtime-shared-libraries', as_file])
except OSError as ose:
if ose.errno == errno.ENOENT:
print('mxmlc not found! Skipping test.')