From 3f98d7d8d2d75fa993c8bea063d6a7c5d67d5b45 Mon Sep 17 00:00:00 2001 From: Bryce Adelstein-Lelbach Date: Thu, 6 Jan 2011 02:50:13 +0000 Subject: [PATCH] Suppressing uninitialized warnings on pathscale unless explicitly specified (they are copious). [SVN r67709] --- src/tools/pathscale.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/pathscale.jam b/src/tools/pathscale.jam index fda8075fc..1dfc78540 100644 --- a/src/tools/pathscale.jam +++ b/src/tools/pathscale.jam @@ -72,8 +72,8 @@ flags pathscale.compile OPTIONS 32 : -m32 ; flags pathscale.compile OPTIONS 64 : -m64 ; flags pathscale.compile OPTIONS off : -woffall -Wno-uninitialized ; -flags pathscale.compile OPTIONS on : -Wall ; -flags pathscale.compile OPTIONS all : -Wall ; +flags pathscale.compile OPTIONS on : -Wall -Wno-uninitialized ; +flags pathscale.compile OPTIONS all : -Wall -Wno-uninitialized ; flags pathscale.compile.c++ OPTIONS off : -noinline ;