summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--configure.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 217c1d33c6..8f344af234 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Jan 31 18:08:59 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * configure.in (optflags): defaulted to -O3 to get rid of slug of
+ gcc 4.3.
+
Sat Jan 31 18:03:41 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/optparse.rb (List#accept, parse_in_order): n option is no
diff --git a/configure.in b/configure.in
index a5b95704f4..6f73385a5a 100644
--- a/configure.in
+++ b/configure.in
@@ -190,7 +190,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=-O3} ${warnflags="-Wall -Wno-parentheses"}
else
linker_flag=
fi