diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-11-09 02:28:31 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-11-09 02:28:31 +0000 |
| commit | e8e477f2093295fc0ceca59e39fcf8b0cb0ec11e (patch) | |
| tree | a29230ed72c69338dd32e4ead0661a12f8e0f1e0 | |
| parent | 9c197735be45e94090650e1c19aa77f95c43a0e3 (diff) | |
* configure.in (warnflags): add -Wno-long-long.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@25697 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.in | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Mon Nov 9 11:28:29 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * configure.in (warnflags): add -Wno-long-long. + Mon Nov 9 01:55:10 2009 Marc-Andre Lafortune <ruby-core@marc-andre.ca> * eval.c (method_inspect, method_name, mnew): Bug fix when diff --git a/configure.in b/configure.in index 86d9fb9264..6869b03ceb 100644 --- a/configure.in +++ b/configure.in @@ -165,7 +165,7 @@ AC_PROG_GCC_TRADITIONAL test $ac_cv_prog_cc_g = yes && : ${debugflags=-g} if test "$GCC" = yes; then linker_flag=-Wl, - : ${optflags=-O2} ${warnflags="-Wall -Wno-parentheses"} + : ${optflags=-O2} ${warnflags="-Wall -Wno-parentheses -Wno-long-long"} else linker_flag= fi |
