Skip to content

Commit

Permalink
build: add -Wno-error to resource build
Browse files Browse the repository at this point in the history
Problem: clang-3.8 doesn't grok -Wno-maybe-uninitialized,
and gcc-5.4.0 doesn't grok -Wno-error=unknown-warning-option.

For now, add -Wno-error in the resource directory
and drop -Wno-maybe-uninitialized so we can get this built
on travis.
  • Loading branch information
garlick committed Mar 30, 2018
1 parent 61e9b8e commit 6856990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resource/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ AM_CXXFLAGS = \
-Wno-unused-local-typedefs \
-Wno-deprecated-declarations \
-Wno-unused-variable \
-Wno-maybe-uninitialized \
-Wno-error \
$(CODE_COVERAGE_CXXFLAGS)

AM_LDFLAGS = $(CODE_COVERAGE_LDFLAGS) \
Expand Down

0 comments on commit 6856990

Please sign in to comment.