From 743e0eebec9a1e7b2bf4ebd0ab4e190f5e587f2f Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 25 Jun 2018 20:12:37 +0300 Subject: Disable all warnings for gcc-class compilers --- mysql/buildfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'mysql/buildfile') diff --git a/mysql/buildfile b/mysql/buildfile index 983f216..6e2ad5a 100644 --- a/mysql/buildfile +++ b/mysql/buildfile @@ -204,12 +204,13 @@ elif ($c.class == 'gcc') # cc.coptions += -fno-omit-frame-pointer -fno-strict-aliasing - # Disable warnings that pop up with -Wall -Wextra. Upstream doesn't seem to - # care about these and it is not easy to disable specific warnings in a way - # that works across compilers/version (some -Wno-* options are only - # recognized in newer versions). + # Disable all warnings. Upstream doesn't seem to care about these and it is + # not easy to disable specific warnings in a way that works across + # compilers/version (some -Wno-* options are only recognized in newer + # versions). Note that we tried -Wno-all -Wno-extra but that wasn't + # sufficient. # - cc.coptions += -Wno-all -Wno-extra + cc.coptions += -w } if ($tclass != 'windows') -- cgit v1.1