rustc/debian/get-stage0.py

25 lines
482 B
Python
Executable File

#!/usr/bin/python
import sys
import bootstrap
from bootstrap import RustBuild
class DownloadOnlyRustBuild(RustBuild):
triple = None
def build_bootstrap(self):
pass
def run(self, *args):
pass
def build_triple(self):
return self.triple
def main(argv):
triple = argv.pop(1)
DownloadOnlyRustBuild.triple = triple
bootstrap.RustBuild = DownloadOnlyRustBuild
bootstrap.bootstrap()
if __name__ == '__main__':
main(sys.argv)