diff options
author | 2023-07-11 05:54:11 +0000 | |
---|---|---|
committer | 2023-07-11 05:54:11 +0000 | |
commit | 9488eb82d4cc50ab15c7b90ed9ee5d66f3ba02e7 (patch) | |
tree | 1b5e37b85f487d2889a16a0bcbe031321ac5cb9b | |
parent | 5af242249d871bdc49c64009967ca87cc524b978 (diff) | |
parent | 423e4ce9e31daeaabde4e470169b20a358ec5ada (diff) |
Merge "gsimple-template-names" into main
-rw-r--r-- | cc/config/global.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cc/config/global.go b/cc/config/global.go index 013b6592b..7f9a6e0ea 100644 --- a/cc/config/global.go +++ b/cc/config/global.go @@ -111,6 +111,9 @@ var ( // Turn off FMA which got enabled by default in clang-r445002 (http://b/218805949) "-ffp-contract=off", + + // Using simple template names reduces the size of debug builds. + "-gsimple-template-names", } commonGlobalConlyflags = []string{} |