Revert "Switch to llvm-ar (with crsD flags only)."

This reverts commit 13bc31d6e1.

Bug: 71694982
Reason for revert: Broke Mac build

Change-Id: I0da6866442ca9273dd329f0b82932f939b7f65ed
This commit is contained in:
Yi Kong
2018-01-08 18:10:35 +00:00
parent 13bc31d6e1
commit df97a8ac9c
2 changed files with 3 additions and 3 deletions

View File

@@ -508,8 +508,8 @@ func TransformObjToStaticLib(ctx android.ModuleContext, objFiles android.Paths,
return
}
arCmd := "${config.ClangBin}/llvm-ar"
arFlags := "crsD"
arCmd := gccCmd(flags.toolchain, "ar")
arFlags := "crsPD"
if flags.arFlags != "" {
arFlags += " " + flags.arFlags
}