aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorivan.penkov@gmail.com <ivan.penkov@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-12-08 03:18:52 +0000
committerivan.penkov@gmail.com <ivan.penkov@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-12-08 03:18:52 +0000
commit947ef27362c91002d933088a61eeef60b104da40 (patch)
treeed5819df9f63984472c4866dd4ce73bd4ab35788 /Makefile.am
parentExplicitly include unistd.h for getpagesize(). (diff)
downloadbreakpad-947ef27362c91002d933088a61eeef60b104da40.tar.xz
The Google-breakpad processor rejects (ignores) context records that lack CPU type information in their context_flags fields. Such context records can be valid (e.g. contexts captured by ::RtlCaptureContext).
http://code.google.com/p/google-breakpad/issues/detail?id=493 http://breakpad.appspot.com/500002/ git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1088 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am
index cd91c335..b374fe2e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -46,12 +46,13 @@ endif
if GCC
# These are good warnings to be treated as errors
AM_CXXFLAGS += \
- -Werror=non-virtual-dtor \
- -Werror=vla \
- -Werror=unused-variable \
-Werror=missing-braces \
+ -Werror=non-virtual-dtor \
-Werror=overloaded-virtual \
- -Werror=sign-compare
+ -Werror=reorder \
+ -Werror=sign-compare \
+ -Werror=unused-variable \
+ -Werror=vla
endif
if LINUX_HOST