Merge changes I26198187,Ia904d07b

* changes:
  rust: Support MTE memtag_heap sanitizer
  rust: Support global sanitizers
This commit is contained in:
Ivan Lozano
2021-11-12 19:26:04 +00:00
committed by Gerrit Code Review
10 changed files with 612 additions and 34 deletions

View File

@@ -34,6 +34,7 @@ type BinaryCompilerProperties struct {
type binaryInterface interface {
binary() bool
staticallyLinked() bool
testBinary() bool
}
type binaryDecorator struct {
@@ -172,3 +173,7 @@ func (binary *binaryDecorator) binary() bool {
func (binary *binaryDecorator) staticallyLinked() bool {
return Bool(binary.Properties.Static_executable)
}
func (binary *binaryDecorator) testBinary() bool {
return false
}