lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [lmi] master a7db9f5 1/2: Fix defect introduced 20180306T1


From: Greg Chicares
Subject: [lmi-commits] [lmi] master a7db9f5 1/2: Fix defect introduced 20180306T1617Z: broke the build
Date: Wed, 18 Apr 2018 19:41:11 -0400 (EDT)

branch: master
commit a7db9f58dc0cc7dc8b8b161a33348c1fe3ad7dae
Author: Gregory W. Chicares <address@hidden>
Commit: Gregory W. Chicares <address@hidden>

    Fix defect introduced 20180306T1617Z: broke the build
    
    Use of boost::regex is controlled by an lmi header wherein pragmata
    suppress unwanted diagnostics, but building boost::regex is unaffected
    by that lmi header. The problem is seen only after 'make clean'.
---
 workhorse.make | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/workhorse.make b/workhorse.make
index cdde1c1..f233632 100644
--- a/workhorse.make
+++ b/workhorse.make
@@ -489,7 +489,11 @@ operations_posix_windows.o: gcc_common_extra_warnings += 
-Wno-maybe-uninitialize
 
 # The boost regex library is incompatible with '-Wshadow'.
 
-$(boost_regex_objects): gcc_common_extra_warnings += -Wno-shadow
+$(boost_regex_objects): gcc_common_extra_warnings += \
+  -Wno-conversion \
+  -Wno-implicit-fallthrough \
+  -Wno-register \
+  -Wno-shadow \
 
 boost_dependent_objects := \
   $(boost_regex_objects) \



reply via email to

[Prev in Thread] Current Thread [Next in Thread]