summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-05-29 23:28:50 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-05-29 23:28:50 +0000
commit9fd0858c3b51946251e9ebaa494ae97392a56848 (patch)
tree321283069fc02a555e8ed43673e0427cb0722c6c
parent0342fcbd51f2f423541f862c8d8e35873d849963 (diff)
fake.rb: fix RUBY_DESCRIPTION for MJIT
* template/fake.rb.in: switch RUBY_DESCRIPTION at runtime depending on the MJIT status. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63523 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--template/fake.rb.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/template/fake.rb.in b/template/fake.rb.in
index 881e39ce46..d70053c264 100644
--- a/template/fake.rb.in
+++ b/template/fake.rb.in
@@ -15,7 +15,7 @@ if inc = arg['i']
scan(/rb_define_global_const\("(RUBY_\w+)",[^;]*?\bMK(?:INT|STR)\(([^()]*)\)/m) do |n, v|
version[n] = src.value(v)
end
- version['RUBY_DESCRIPTION'] = src.value('description_with_jit') if RubyVM::MJIT.enabled?
+ arg['RUBY_DESCRIPTION_WITH_JIT'] = src.value('description_with_jit')
end
%>baseruby="<%=arg['BASERUBY']%>"
_\
@@ -32,7 +32,9 @@ class Object
CROSS_COMPILING = RUBY_PLATFORM
constants.grep(/^RUBY_/) {|n| remove_const n}
% arg['versions'].each {|n, v|
- <%=n%> = <%=v.inspect%>
+ <%=n%> = <%if n=='RUBY_DESCRIPTION' %>RubyVM::MJIT.enabled? ?
+ <%=arg['RUBY_DESCRIPTION_WITH_JIT'].inspect%> :
+ <%end%><%=v.inspect%>
% }
end
builddir = File.dirname(File.expand_path(__FILE__))