diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-02-15 16:39:56 -0500 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-02-15 17:00:25 -0500 |
commit | d8e25261b69dd4cd5acaacf6c76d7c658c25e9bd (patch) | |
tree | 47277d9c408afebdb96a604816e82d08beb7163b /tests/runner.py | |
parent | b16a890dc7e1435497a1b97b1a0fb7b0987faaef (diff) |
support compiling .so files directly in emcc
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index ac422e9e..a99a8320 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -5657,7 +5657,7 @@ Options that are modified or new in %s include: # emcc src.cpp -c and emcc src.cpp -o src.[o|bc] ==> should give a .bc file # regression check: -o js should create "js", with bitcode content - for args in [['-c'], ['-o', 'src.o'], ['-o', 'src.bc'], ['-o', 'js']]: + for args in [['-c'], ['-o', 'src.o'], ['-o', 'src.bc'], ['-o', 'src.so'], ['-o', 'js']]: target = args[1] if len(args) == 2 else 'hello_world.o' clear() Popen([compiler, path_from_root('tests', 'hello_world' + suffix)] + args, stdout=PIPE, stderr=PIPE).communicate() |