diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-18 14:13:02 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-18 14:13:02 -0800 |
commit | 9f5a01e4785f11b2385064eed678cbfda9fa41ae (patch) | |
tree | 8a0397dd7e59443af5d2199854ca39a844db8477 /emcc | |
parent | 61de2f8971271c9412174d67932d64d228e42eaf (diff) | |
parent | e4ce6ee11b5048404c71065e8253b34e7eb8dd29 (diff) |
Merge pull request #1831 from dinibu/dependency-fix-1820
Further changes for issue #1732
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -1274,7 +1274,16 @@ try: shutil.move(in_temp(unsuffixed(uniquename(input_file)) + '.o'), unsuffixed_basename(input_file) + '.' + final_suffix) else: if len(input_files) == 1: - shutil.move(in_temp(unsuffixed(uniquename(input_files[0])) + '.o'), specified_target) + temp_output_base = in_temp(unsuffixed(uniquename(input_files[0]))) + shutil.move(temp_output_base + '.o', specified_target) + if os.path.exists(temp_output_base + '.d'): + # There was a .d file generated, from -MD or -MMD and friends, save a copy of it to where the output resides, + # adjusting the target name away from the temporary file name to the specified target. + # It will be deleted with the rest of the temporary directory. + deps = open(temp_output_base + '.d').read() + deps = deps.replace(temp_output_base + '.o', specified_target) + with open(os.path.join(os.path.dirname(specified_target), os.path.basename(unsuffixed(input_files[0]) + '.d')), "w") as out_dep: + out_dep.write(deps) else: assert len(original_input_files) == 1 or not has_dash_c, 'fatal error: cannot specify -o with -c with multiple files' + str(sys.argv) + ':' + str(original_input_files) # We have a specified target (-o <target>), which is not JavaScript or HTML, and |