mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-13 16:05:49 +00:00
25 lines
482 B
Python
Executable File
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)
|