1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
naruse 2014-01-27 18:57:57 +00:00
parent 16f61ee5fc
commit fcec1aa6e2
2 changed files with 8 additions and 0 deletions

View file

@ -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

View file

@ -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,