Skip to content

Commit

Permalink
Ignore ignored attributes for Ruby
Browse files Browse the repository at this point in the history
Ruby 2.7.0 has attributes that are ignored because they're
misplaced in code included by headers.  Ignore those warnings since
we can't fix them.
  • Loading branch information
rra committed May 9, 2022
1 parent 95bf280 commit 9570672
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,8 @@ RUBY_WARNINGS = -Wno-strict-prototypes -Wno-redundant-decls -Wno-conversion \
-Wno-gnu-statement-expression -Wno-unknown-warning-option \
-Wno-gcc-compat -Wno-extra-semi-stmt -Wno-strict-overflow -Wno-vla \
-Wno-gnu-zero-variadic-macro-arguments \
-Wno-declaration-after-statement -Wno-unknown-attributes
-Wno-declaration-after-statement -Wno-unknown-attributes \
-Wno-ignored-attributes

warnings:
$(MAKE) V=0 \
Expand Down

0 comments on commit 9570672

Please sign in to comment.