[haiku-commits] haiku: hrev52586 - build/jam

  • From: waddlesplash <waddlesplash@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Fri, 23 Nov 2018 19:59:52 -0500 (EST)

hrev52586 adds 1 changeset to branch 'master'
old head: 382fff8961085bcf00e2615bf77ebcab8b4f4aa0
new head: e5b11ae3c74edcd734e34c21f84e258f681f9459
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=e5b11ae3c74e+%5E382fff896108

----------------------------------------------------------------------------

e5b11ae3c74e: ArchitectureRules: Remove -Wno-unused-parameter.
  
  I added this here so that one could set -Wextra in BuildConfig and
  not be bombarded with useless warnings; but it seems that GCC2 chokes
  on it instead of ignoring it. Oh well.

                              [ Augustin Cavalier <waddlesplash@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev52586
Commit:      e5b11ae3c74edcd734e34c21f84e258f681f9459
URL:         https://git.haiku-os.org/haiku/commit/?id=e5b11ae3c74e
Author:      Augustin Cavalier <waddlesplash@xxxxxxxxx>
Date:        Sat Nov 24 00:58:22 2018 UTC

----------------------------------------------------------------------------

1 file changed, 2 insertions(+), 2 deletions(-)
build/jam/ArchitectureRules | 4 ++--

----------------------------------------------------------------------------

diff --git a/build/jam/ArchitectureRules b/build/jam/ArchitectureRules
index 0dcf1cb8ee..cde35cdd2c 100644
--- a/build/jam/ArchitectureRules
+++ b/build/jam/ArchitectureRules
@@ -119,11 +119,11 @@ rule ArchitectureSetup architecture
 
        # warning flags
        HAIKU_WARNING_CCFLAGS_$(architecture) = -Wall
-               -Wno-trigraphs -Wno-unused-parameter -Wno-multichar
+               -Wno-trigraphs -Wno-multichar
                -Wpointer-arith -Wcast-align -Wsign-compare
                -Wmissing-prototypes ;
        HAIKU_WARNING_C++FLAGS_$(architecture) = -Wall
-               -Wno-trigraphs -Wno-unused-parameter -Wno-multichar
+               -Wno-trigraphs -Wno-multichar
                -Wpointer-arith -Wcast-align -Wsign-compare
                -Wno-ctor-dtor-privacy -Woverloaded-virtual ;
 


Other related posts:

  • » [haiku-commits] haiku: hrev52586 - build/jam - waddlesplash