summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--configure.in1
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e3752d2779..c1afedb144 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Tue Jan 28 03:48:25 2014 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * configure.in: define USE_BUILTIN_FRAME_ADDRESS on x86_64
+ even if __builtin_frame_address is not used now.
+ By this, FreeBSD's clang can build ruby 1.8,
+ and alloca(1) doesn't work on it.
+
Wed Mar 27 11:09:17 2013 Akinori MUSHA <knu@iDaemons.org>
* array.c (rb_ary_collect), enum.c (enum_collect): rb_warn() is a
diff --git a/configure.in b/configure.in
index 27331e83e3..502e07d60f 100644
--- a/configure.in
+++ b/configure.in
@@ -144,6 +144,7 @@ fi
case $target_cpu in
i?86) frame_address=yes;;
+ x86_64) frame_address=yes;;
*) frame_address=no;;
esac
AC_ARG_ENABLE(frame-address,