diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-06-22 17:17:25 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-06-22 17:17:25 -0700 |
commit | ddd0442f97226dee5b16f6c860366ba415228267 (patch) | |
tree | 48e66a62de8f6538c1863840123f4d28770a00a8 | |
parent | 92987e9dd24ed222830b062f7366594d99ab553d (diff) |
disable overly permissive assertion in emcc
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -681,7 +681,7 @@ try: if len(input_files) == 1: shutil.move(in_temp(unsuffixed_uniquename(input_files[0]) + '.o'), specified_target) else: - assert not has_dash_c, 'fatal error: cannot specify -o with -c with multiple files' + str(sys.argv) + #assert not has_dash_c, 'fatal error: cannot specify -o with -c with multiple files' + str(sys.argv) + ':' + str(input_files) # We have a specified target (-o <target>), which is not JavaScript or HTML, and # we have multiple files: Link them if DEBUG: print >> sys.stderr, 'emcc: link: ' + str(temp_files) |