diff --git a/cc/cc.go b/cc/cc.go index 64ac50f2e..f41984f2c 100644 --- a/cc/cc.go +++ b/cc/cc.go @@ -2254,10 +2254,12 @@ func NewBenchmark(hod android.HostOrDeviceSupported) *Module { module := newModule(hod, android.MultilibFirst) module.compiler = &baseCompiler{} module.linker = &benchmarkLinker{} - module.installer = &baseInstaller{ - dir: "nativetest", - dir64: "nativetest64", - data: true, + module.installer = &testInstaller{ + baseInstaller: baseInstaller{ + dir: "nativetest", + dir64: "nativetest64", + data: true, + }, } return module }