Add AArch64 device Rust toolchain.

Bug: 141207434
Test: build example rust device module.
Change-Id: I0932a614942bf4a4d4b6c153fcc4fc79c7f202bd
This commit is contained in:
Ivan Lozano
2019-09-20 11:00:37 -07:00
parent 5ca5ef6788
commit f1c8433b40
12 changed files with 221 additions and 16 deletions

View File

@@ -61,6 +61,10 @@ func (toolchainLinuxX8664) Supported() bool {
return true
}
func (toolchainLinuxX8664) Bionic() bool {
return false
}
func (t *toolchainLinuxX8664) Name() string {
return "x86_64"
}
@@ -85,6 +89,10 @@ func (toolchainLinuxX86) Supported() bool {
return true
}
func (toolchainLinuxX86) Bionic() bool {
return false
}
func (t *toolchainLinuxX86) Name() string {
return "x86"
}