[build] Disable format-overflow for GCC

Currently it's generating false negatives.

Bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90036
Change-Id: I4ed457bee76432ea5df19a9f1a08d8f08e8f0816
Reviewed-on: https://fuchsia-review.googlesource.com/c/fuchsia/+/450178
Reviewed-by: Roland McGrath <mcgrathr@google.com>
Commit-Queue: Joshua Seaton <joshuaseaton@google.com>
Fuchsia-Auto-Submit: Joshua Seaton <joshuaseaton@google.com>
diff --git a/zircon/public/gn/config/BUILD.zircon.gn b/zircon/public/gn/config/BUILD.zircon.gn
index 18b5880..96befdd 100644
--- a/zircon/public/gn/config/BUILD.zircon.gn
+++ b/zircon/public/gn/config/BUILD.zircon.gn
@@ -603,6 +603,12 @@
       "-Wno-nonnull-compare",
       "-Wno-format-truncation",
     ]
+
+    cflags_cc += [
+      # TODO(https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90036): Re-enable
+      # once the bug is fixed.
+      "-Wno-format-overflow",
+    ]
   } else {
     cflags += [
       "-Wnewline-eof",