summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-01-27 18:57:57 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-01-27 18:57:57 +0000
commitfcec1aa6e24aa92b8afb139f86a92459fc299d74 (patch)
tree6f10931958755937234dd7c00cff2b1012b03849
parent16f61ee5fc05cdcab19047a212976bb53bce6fdf (diff)
* 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. git-svn-id: svn+ssh://svn.ruby-lang.org/ruby/branches/ruby_1_8@44717 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-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,