diff options
| author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-01-27 18:59:34 +0000 |
|---|---|---|
| committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-01-27 18:59:34 +0000 |
| commit | f48ae0d10c5b586db5748b0d4b645c7e9ff5d52e (patch) | |
| tree | 03c429887961bbd09af63e1a02c1930b9fed72a9 /configure.in | |
| parent | b912e1d2c02a038818aac2a82a1dc927a70e0750 (diff) | |
merge revision(s) 44717:ruby_1_8_7
* 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_7@44719 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 62b34a8c62..306d536b92 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, |
