1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/tools/run_rustc.py

50 lines
1.6 KiB
Python
Raw Normal View History

2018-07-08 05:09:42 -04:00
#!/usr/bin/env python
# Inspired by
# https://fuchsia.googlesource.com/build/+/master/rust/build_rustc_target.py
# Copyright 2018 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import sys
import os
import argparse
import subprocess
2018-07-23 20:50:11 -04:00
import util
2018-07-08 05:09:42 -04:00
# Updates the path of the main target in the depfile to the relative path
# from base_path build_output_path
def fix_depfile(depfile_path, base_path, build_output_path):
# It's important that the fixed-up depfile has the same mtime as before.
# Ninja relies on it to decide whether to rebuild the target it belongs to.
stat = os.stat(depfile_path)
2018-07-08 05:09:42 -04:00
with open(depfile_path, "r") as depfile:
content = depfile.read()
content_split = content.split(': ', 1)
target_path = os.path.relpath(build_output_path, start=base_path)
new_content = "%s: %s" % (target_path, content_split[1])
with open(depfile_path, "w") as depfile:
depfile.write(new_content)
os.utime(depfile_path, (stat.st_atime, stat.st_mtime))
2018-07-08 05:09:42 -04:00
def main():
parser = argparse.ArgumentParser("Compiles a Rust crate")
parser.add_argument(
"--depfile",
help="Path at which the output depfile should be stored",
required=False)
parser.add_argument(
"--output_file",
help="Path at which the output file should be stored",
required=False)
args, rest = parser.parse_known_args()
2018-07-23 20:50:11 -04:00
util.run(["rustc"] + rest, quiet=True)
2018-07-08 05:09:42 -04:00
if args.depfile and args.output_file:
fix_depfile(args.depfile, os.getcwd(), args.output_file)
if __name__ == '__main__':
sys.exit(main())