aboutsummaryrefslogtreecommitdiffstats
path: root/cc/cc.go
diff options
context:
space:
mode:
authorVishwath Mohan <vishwath@google.com>2017-03-16 11:01:23 -0700
committerVishwath Mohan <vishwath@google.com>2017-03-16 14:06:30 -0700
commit83d9f71cc595d6a9bb194846165a47ec1779e6cd (patch)
tree296a8fdb6d6749d34deae90cf5552d32d9ef708d /cc/cc.go
parenta8b5502773a9aebe78503df2dfd23724a99afec5 (diff)
downloadbuild_soong-83d9f71cc595d6a9bb194846165a47ec1779e6cd.tar.gz
build_soong-83d9f71cc595d6a9bb194846165a47ec1779e6cd.tar.bz2
build_soong-83d9f71cc595d6a9bb194846165a47ec1779e6cd.zip
Allow custom ar flags to be set.
Adds the ability to set custom flags for ar in Soong, similar to how they can currently be set for make. Bug: 36290748 Test: sanitize.go is able to correct set custom ar flags for CFI. CFI enabled Soong components build and boot without issue. Change-Id: I3212793aa84ba51df910c184d8bb376b3650376e
Diffstat (limited to 'cc/cc.go')
-rw-r--r--cc/cc.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cc/cc.go b/cc/cc.go
index ec951887..c5f1c357 100644
--- a/cc/cc.go
+++ b/cc/cc.go
@@ -96,6 +96,7 @@ type PathDeps struct {
type Flags struct {
GlobalFlags []string // Flags that apply to C, C++, and assembly source files
+ ArFlags []string // Flags that apply to ar
AsFlags []string // Flags that apply to assembly source files
CFlags []string // Flags that apply to C and C++ source files
ConlyFlags []string // Flags that apply to C source files