evanphx / rubinius

Rubinius, the Ruby VM

This URL has Read+Write access

rubinius / configure
100755 278 lines (221 sloc) 6.021 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
#!/usr/bin/env ruby
 
require 'tempfile'
 
root = File.expand_path File.dirname(__FILE__)
 
require File.join(root, "kernel", "delta", "options")
 
class Configure
 
  def initialize(root)
    @config = File.join(root, "config.rb")
 
    @llvm = :no
    @llvm_path = nil
    @llvm_configure = nil
    @prefix = nil
    @defines = []
 
    @llvm_svn_dir = File.join(root, "vm", "external_libs", "llvm")
 
    o = Rubinius::Options.new "Usage: configure [options]", 40
 
    o.on "-h", "--help", "Display this help" do
      puts o
      exit 1
    end
 
    o.on("--enable-llvm", "[MODE]",
         "Build with LLVM") do |which|
      @llvm = (which || "auto").to_sym
    end
 
    o.on "--llvm-path", "PATH", "Where to find LLVM" do |dir|
      @llvm_path = dir
    end
 
    o.on "--prefix", "PATH", "Where to install Rubinius" do |dir|
      @prefix = dir
    end
 
    o.on "--update-prebuilt", "Update prebuilt packages from the internet" do
      update_prebuilt
    end
 
    @options = o
  end
 
  def parse(ary)
    @options.parse ary
  end
 
  def update_prebuilt
    file = "llvm-#{arch}.tar.bz2"
    full_path = "vm/external_libs/prebuilt/#{file}"
 
    url = "http://asset.rubini.us/prebuilt/#{file}"
 
    unless File.exists?(full_path)
      dir = File.dirname(full_path)
      Dir.mkdir dir unless File.directory?(dir)
      puts "Fetching #{url}..."
 
      system "curl -# -f -o \"#{full_path}\" #{url}"
      if $?.exitstatus == 22
        puts "ERROR. No #{file} available on server."
      end
    end
 
    puts "Prebuilt packages updated."
 
  end
 
  LLVM_SVN_DIR = %w!vm external_libs llvm!
LLVM_SVN_URL = "http://llvm.org/svn/llvm-project/llvm/branches/release_26/"
 
def setup_svn
unless File.directory?(@llvm_svn_dir)
print " Checking out LLVM from svn: #{LLVM_SVN_URL}"
system "svn co -q #{LLVM_SVN_URL} #{@llvm_svn_dir}"
end
 
if File.exists?(File.join(@llvm_svn_dir, "include"))
puts " Code appears to be proper svn tree."
else
puts " Code in #{@llvm_svn_dir} doesn't appear to be proper LLVM tree!"
exit 1
end
end
 
def setup_prebuilt
file = "vm/external_libs/prebuilt/llvm-#{arch}.tar.bz2"
 
update_prebuilt unless File.exists?(file)
 
if File.exists?(file)
print " Unpacking prebuilt LLVM for #{arch}: "
system "cd vm/external_libs; mkdir llvm; cd llvm; tar xjf ../prebuilt/llvm-#{arch}.tar.bz2"
puts "done!"
@llvm = :prebuilt
return true
end
 
return false
end
 
def setup_path
print "Validating '#{@llvm_path}': "
if File.directory? @llvm_path
["Release", "Debug"].each do |which|
sub = File.join(@llvm_path, which, "bin")
if File.directory? sub
puts "Ok! Using #{which}"
@llvm_configure = File.join(@llvm_path, which, "bin", "llvm-config")
@llvm = :config
return true
end
end
 
puts "ERROR. Doesn't appear to be built already!"
end
 
puts "ERROR. Path doesn't exist."
return false
end
 
def setup_auto
print " Checking for existing LLVM tree: "
if File.directory?(@llvm_svn_dir)
puts "found!"
if File.exists?(File.join(@llvm_svn_dir, "Makefile.common"))
@llvm = :svn
else
@llvm = :prebuilt
end
 
return
else
puts "not found."
end
 
if @llvm_path
unless setup_path
puts "ABORT: Path '#{@llvm_path}' not a proper LLVM path"
exit 1
end
 
return
end
 
return if setup_prebuilt
return if setup_config
 
@llvm = :svn
setup_svn
end
 
def setup_config
print " Checking for 'llvm-config': "
which = ENV['PATH'].split(":").find do |path|
File.exists? File.join(path, "llvm-config")
end
 
if which
config = File.join(which, "llvm-config")
version = `#{config} --version`.strip
parts = version.sub(/svn$/, "").split(".").map { |i| i.to_i }
if parts[0] < 2 or parts[1] < 6
puts "too old of a version"
else
puts "found! (version #{version})"
@llvm_configure = which
@llvm = :config
return true
end
else
puts "not found"
end
 
false
end
 
def has_function(name, includes=[])
print "Checking for function '#{name}': "
tf = Tempfile.new("rbx-test")
includes.each do |i|
tf.puts "#include <#{i}>"
end
 
tf.puts "int main() { void* ptr = &#{name}; }"
 
tf.close
 
`#{compiler} -o /dev/null -x c #{tf.path} 2>&1`
status = ($?.exitstatus == 0)
 
tf.unlink
 
if status
puts "found!"
else
puts "not found."
end
 
return status
end
 
def detect_features
if has_function("backtrace", "execinfo.h")
@defines << "HAS_EXECINFO"
end
end
 
def process
print "Using LLVM: "
case @llvm
when :svn
puts "svn"
setup_svn
when :auto
puts "auto"
setup_auto
when :config
puts "config"
exit 1 unless setup_config
when :prebuilt
unless setup_prebuilt
puts "No prebuilt LLVM available for #{arch}"
        exit 1
      end
    when :path
      puts "existing build"
      exit 1 unless setup_path
    when :no
      puts "no"
    else
      puts "unknown value '#{@llvm}'"
    end
 
    detect_features
  end
 
  def arch
    @arch ||= `./rakelib/config.guess`.strip
  end
 
  def compiler
    ENV['CC'] || "gcc"
  end
 
  def write_config
    File.open @config, "w" do |f|
      f.puts "module Rubinius"
      f.puts "BUILD_CONFIG = {"
      f.puts " :llvm => :#{@llvm},"
      f.puts " :llvm_configure => '#{@llvm_configure}',"
      f.puts " :arch => '#{arch()}',"
      f.puts " :prefix => #{@prefix.inspect},"
      f.puts " :compiler => '#{compiler}',"
      if @defines.empty?
        f.puts " :defines => []"
      else
        f.puts " :defines => ['#{@defines.join(', ')}']"
      end
      f.puts "}"
      f.puts "end"
    end
  end
 
end
 
STDOUT.sync = true
 
c = Configure.new(root)
c.parse ARGV
c.process
c.write_config