mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
configure.ac: suppress more Sun C warnings.
They are rather annoying than being useful to us.
This commit is contained in:
parent
331d02038b
commit
2ddc67ffb6
1 changed files with 11 additions and 2 deletions
13
configure.ac
13
configure.ac
|
@ -630,8 +630,17 @@ AC_COMPILE_IFELSE([
|
|||
@%:@if !(defined(__SUNPRO_C)||defined(__SUNPRO_CC))
|
||||
@%:@error not sunpro
|
||||
@%:@endif],[])], [
|
||||
RUBY_TRY_CFLAGS(-erroff=E_STATEMENT_NOT_REACHED, [
|
||||
RUBY_APPEND_OPTIONS(rb_cv_warnflags, -erroff=E_STATEMENT_NOT_REACHED)])],[])
|
||||
for e in \
|
||||
E_STATEMENT_NOT_REACHED \
|
||||
E_INIT_SIGN_EXTEND \
|
||||
E_INIT_DOES_NOT_FIT \
|
||||
E_INITIALIZATION_TYPE_MISMATCH
|
||||
do
|
||||
RUBY_TRY_CFLAGS([-erroff=${e}], [
|
||||
RUBY_APPEND_OPTIONS(rb_cv_warnflags, [-erroff=${e}])
|
||||
])
|
||||
done
|
||||
])
|
||||
|
||||
AC_ARG_WITH(compress-debug-sections,
|
||||
AS_HELP_STRING([--with-compress-debug-sections=type],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue