Merge changes from topic "add_rust_arm64_devices"

* changes:
  Add ARM32 device Rust toolchain.
  Add AArch64 device Rust toolchain.
This commit is contained in:
Ivan Lozano
2019-09-24 21:39:51 +00:00
committed by Gerrit Code Review
13 changed files with 314 additions and 16 deletions

View File

@@ -401,6 +401,14 @@ func StaticDepTag() dependencyTag {
return staticDepTag
}
func CrtBeginDepTag() dependencyTag {
return crtBeginDepTag
}
func CrtEndDepTag() dependencyTag {
return crtEndDepTag
}
// Module contains the properties and members used by all C/C++ module types, and implements
// the blueprint.Module interface. It delegates to compiler, linker, and installer interfaces
// to construct the output file. Behavior can be customized with a Customizer interface