2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 00:32:11 +00:00

Suppressing uninitialized warnings on pathscale unless explicitly specified

(they are copious).



[SVN r67709]
This commit is contained in:
Bryce Adelstein-Lelbach
2011-01-06 02:50:13 +00:00
parent f9dac06767
commit 3f98d7d8d2

View File

@@ -72,8 +72,8 @@ flags pathscale.compile OPTIONS <address-model>32 : -m32 ;
flags pathscale.compile OPTIONS <address-model>64 : -m64 ;
flags pathscale.compile OPTIONS <warnings>off : -woffall -Wno-uninitialized ;
flags pathscale.compile OPTIONS <warnings>on : -Wall ;
flags pathscale.compile OPTIONS <warnings>all : -Wall ;
flags pathscale.compile OPTIONS <warnings>on : -Wall -Wno-uninitialized ;
flags pathscale.compile OPTIONS <warnings>all : -Wall -Wno-uninitialized ;
flags pathscale.compile.c++ OPTIONS <inlining>off : -noinline ;