[NFCI] Change llvm-ar '-format' to be '--format'.

Upcoming versions of the toolchain (at least when I was locally testing)
drop support for the single-dashed argument type. Fixing this ahead of
time as to hopefully avoid the toolchain-release-blocking bug in future
:).

Bug: N/A
Test: Build the platform.
Change-Id: Ia2c6dcb19556f1979f9a6ecfd3a0ec58fb73e36e
diff --git a/cc/builder.go b/cc/builder.go
index b494f7b..8d2cb3b 100644
--- a/cc/builder.go
+++ b/cc/builder.go
@@ -746,7 +746,7 @@
 	arCmd := "${config.ClangBin}/llvm-ar"
 	arFlags := ""
 	if !ctx.Darwin() {
-		arFlags += " -format=gnu"
+		arFlags += " --format=gnu"
 	}
 
 	if len(wholeStaticLibs) == 0 {