diff options
author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-01-16 08:35:33 +0000 |
---|---|---|
committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-01-16 08:35:33 +0000 |
commit | 7edb0a275c73f08cb611efa95fe8c1d73002f982 (patch) | |
tree | 32cb46ef249dbd674ba10708356e77e757176f70 /configure.ac | |
parent | b343c53db08106893a6adfdd1693f51ac814b45a (diff) | |
download | ruby-7edb0a275c73f08cb611efa95fe8c1d73002f982.tar.gz |
-Wno-overlength-strings
as per https://bugs.ruby-lang.org/projects/ruby-trunk/wiki/Assumptions
we are officially giving up 509 characters limit of C string
literal length.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61874 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 339ca39bce..53ec20479a 100644 --- a/configure.ac +++ b/configure.ac @@ -770,6 +770,7 @@ AS_IF([test "$GCC:${warnflags+set}:no" = yes::no], [ -Werror=division-by-zero \ -Werror=deprecated-declarations \ -Werror=misleading-indentation \ + -Wno-overlength-strings \ -Wno-packed-bitfield-compat \ -Wsuggest-attribute=noreturn \ -Wsuggest-attribute=format \ |