diff options
Diffstat (limited to 'cc/cc.go')
-rw-r--r-- | cc/cc.go | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -617,6 +617,7 @@ type linker interface { link(ctx ModuleContext, flags Flags, deps PathDeps, objs Objects) android.Path appendLdflags([]string) unstrippedOutputFilePath() android.Path + strippedAllOutputFilePath() android.Path nativeCoverage() bool coverageOutputFilePath() android.OptionalPath @@ -3634,6 +3635,11 @@ func (c *Module) OutputFiles(tag string) (android.Paths, error) { return android.PathsIfNonNil(c.linker.unstrippedOutputFilePath()), nil } return nil, nil + case "stripped_all": + if c.linker != nil { + return android.PathsIfNonNil(c.linker.strippedAllOutputFilePath()), nil + } + return nil, nil default: return nil, fmt.Errorf("unsupported module reference tag %q", tag) } |