From 21951f84dcd1b543f892b4d824ab91525c49c423 Mon Sep 17 00:00:00 2001 From: Michael Lotz Date: Tue, 15 Jul 2008 11:52:08 +0000 Subject: [PATCH] Add -Wno-multichar to the kernel warning flags to avoid useless warnings. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26418 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- build/jam/BuildSetup | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build/jam/BuildSetup b/build/jam/BuildSetup index 7e556465b0..3351d3bfbb 100644 --- a/build/jam/BuildSetup +++ b/build/jam/BuildSetup @@ -305,8 +305,9 @@ HAIKU_WARNING_CCFLAGS = -Wall -Wno-trigraphs -Wmissing-prototypes -Wpointer-arit HAIKU_WARNING_C++FLAGS = -Wall -Wno-trigraphs -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wpointer-arith -Wcast-align -Wsign-compare ; -HAIKU_KERNEL_WARNING_CCFLAGS = -Wall -Wno-trigraphs -Wmissing-prototypes ; -HAIKU_KERNEL_WARNING_C++FLAGS = -Wall -Wno-trigraphs ; +HAIKU_KERNEL_WARNING_CCFLAGS = -Wall -Wno-trigraphs -Wmissing-prototypes + -Wno-multichar ; +HAIKU_KERNEL_WARNING_C++FLAGS = -Wall -Wno-trigraphs -Wno-multichar ; # debug flags HAIKU_DEBUG_FLAGS ?= -ggdb ;