evanphx / rubinius

Rubinius, the Ruby VM

This URL has Read+Write access

rubinius / Rakefile
100644 292 lines (223 sloc) 7.769 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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
# NOTE! When updating this file, also update INSTALL, if necessary.
# NOTE! Please keep your tasks grouped together.
 
$VERBOSE = true
$verbose = Rake.application.options.trace
$dlext = Config::CONFIG["DLEXT"]
$compiler = nil
 
RUBINIUS_BASE = File.expand_path(File.dirname(__FILE__))
 
# require 'tsort'
# require 'rakelib/rubinius'
# require 'rakelib/struct_generator'
# require 'rakelib/const_generator'
# require 'rakelib/types_generator'
 
task :default => %w[build vm:test]
 
desc "Compile the given ruby file into a .rbc file"
task :compile_ruby, :file do |task, args|
  file = args[:file]
  raise ArgumentError, 'compile_ruby requires a file name' if file.nil?
 
  rbc = file + 'c'
 
  compile_ruby file, rbc
end
task :compile_ruby => 'kernel:build' # HACK argument + dependency is broken
 
desc "Run the given ruby fil ewith the vm"
task :run_ruby, :file do |task, args|
  file = args[:file]
  raise ArgumentError, 'compile_ruby requires a file name' if file.nil?
 
  rbc = file + 'c'
 
  compile_ruby file, rbc
 
  ENV['PROBE'] = 'yes' if $verbose
  ENV['RBX_RUNTIME'] = File.join File.dirname(__FILE__), 'runtime'
 
  sh 'vm/vm', rbc
end
task :run_ruby => %w[kernel:build vm/vm] # HACK argument + dependency is broken
 
# BUILD TASKS
 
# task :stable_compiler do
# if ENV['USE_CURRENT'] or ENV['SYSTEM']
# puts "Use current versions, not stable."
# else
# ENV['RBX_BOOTSTRAP'] = "runtime/stable/bootstrap.rba"
# ENV['RBX_CORE'] = "runtime/stable/core.rba"
# ENV['RBX_LOADER'] = "runtime/stable/loader.rbc"
# ENV['RBX_PLATFORM'] = "runtime/stable/platform.rba"
# end
# end
 
# files = FileList['kernel/core/*.rb']
 
# unless files.include?("kernel/core/dir.rb")
# files.add("kernel/core/dir.rb")
# end
 
# Core = CodeGroup.new(files, 'runtime/core', 'core')
 
# Bootstrap = CodeGroup.new 'kernel/bootstrap/*.rb', 'runtime/bootstrap',
# 'bootstrap'
# PlatformFiles = CodeGroup.new 'kernel/platform/*.rb', 'runtime/platform', 'platform'
 
# file 'runtime/loader.rbc' => 'kernel/loader.rb' do
# compile 'kernel/loader.rb', 'runtime/loader.rbc'
# end
 
# file 'runtime/stable/loader.rbc' => 'runtime/loader.rbc' do
# cp 'runtime/loader.rbc', 'runtime/stable', :verbose => $verbose
# end
 
# file 'runtime/stable/compiler.rba' => 'build:compiler' do |t|
# #sh "cd lib; zip -r ../runtime/stable/compiler.rba compiler -x \\*.rb"
# rm_f t.name
# rbc_files = Rake::FileList['compiler/**/*.rbc']
 
# Dir.chdir 'lib' do
# rbc_files.each do |rbc_file|
# ar_add "../#{t.name}", rbc_file
# end
# end
# end
 
# Rake::StructGeneratorTask.new do |t|
# t.dest = "lib/etc.rb"
# end
 
# Rake::StructGeneratorTask.new do |t|
# t.dest = 'lib/zlib.rb'
# end
 
# AllPreCompiled = Core.output + Bootstrap.output + PlatformFiles.output
# AllPreCompiled << "runtime/loader.rbc"
 
desc "Build everything that needs to be built"
task :build => %w[
vm
kernel:build
]
# build:rbc
# compiler
# lib/etc.rb
# lib/rbconfig.rb
# extensions
 
namespace :build do
 
# task :setup_rbc => :stable_compiler
 
# task :rbc => ([:setup_rbc] + AllPreCompiled)
 
# task :compiler => :stable_compiler do
# compile_dir "lib/compiler"
# end
 
# desc "Rebuild runtime/stable/*. If you don't know why you're running this, don't."
# task :stable => %w[
# build:all
# runtime/stable/bootstrap.rba
# runtime/stable/core.rba
# runtime/stable/compiler.rba
# runtime/stable/loader.rbc
# runtime/stable/platform.rba
# ]
 
# desc "Rebuild the .load_order.txt files"
# task "load_order" do
# # Note: Steps to rebuild load_order were defined above
# end
 
# namespace :vm do
# task "clean" do
# sh "cd shotgun/lib; #{make "clean"}"
# end
 
# task "dev" do
# sh "cd shotgun/lib; #{make "DEV=1"}"
# end
# end
 
end
 
# # INSTALL TASKS
 
# desc "Install rubinius as rbx"
# task :install => :config_env do
# sh "cd shotgun; #{make "install"}"
 
# mkdir_p ENV['RBAPATH'], :verbose => true
# mkdir_p ENV['CODEPATH'], :verbose => true
 
# rba_files = Rake::FileList.new('runtime/platform.conf',
# 'runtime/**/*.rb{a,c}',
# 'runtime/**/.load_order.txt')
 
# install_files rba_files, ENV['RBAPATH']
 
# lib_files = Rake::FileList.new 'lib/**/*'
 
# install_files lib_files, ENV['CODEPATH']
 
# mkdir_p File.join(ENV['CODEPATH'], 'bin'), :verbose => true
 
# Rake::FileList.new("#{ENV['CODEPATH']}/**/*.rb").sort.each do |rb_file|
# sh File.join(ENV['BINPATH'], 'rbx'), 'compile', rb_file, :verbose => true
# end
# end
 
# desc "Uninstall rubinius and libraries. Helps with build problems."
# task :uninstall => :config_env do
# rm Dir[File.join(ENV['BINPATH'], 'rbx*')]
# rm_r Dir[File.join(ENV['LIBPATH'], '*rubinius*')]
# end
 
# task :config_env => 'shotgun/config.mk' do
# File.foreach 'shotgun/config.mk' do |line|
# next unless line =~ /(.*?)=(.*)/
# ENV[$1] = $2
# end
# end
 
# task :compiledir => :stable_compiler do
# dir = ENV['DIR']
# raise "Use DIR= to set which directory" if !dir or dir.empty?
# compile_dir(dir)
# end
 
# # CLEAN TASKS
 
desc "Recompile all ruby system files"
task :rebuild => %w[clean build]
 
desc 'Remove rubinius build files'
task :clean => %w[vm:clean kernel:clean clean:crap]
 
desc 'Remove rubinius build files and external library build files'
task :distclean => %w[vm:distclean]
 
namespace :clean do
# desc "Cleans all compiled extension files (lib/ext)"
# task :extensions do
# Dir["lib/ext/**/*#{$dlext}"].each do |f|
# rm_f f, :verbose => $verbose
# end
# end
 
# desc "Cleans up generated files"
# task :generated do
# rm_f Dir["shotgun/lib/grammar.c"], :verbose => $verbose
# end
 
  desc "Cleans up editor files and other misc crap"
  task :crap do
    files = (Dir["*~"] + Dir["**/*~"]).uniq
 
    rm_f files, :verbose => $verbose unless files.empty?
  end
end
 
# # SPEC TASKS
# desc "Run all 'known good' specs (task alias for spec:ci)"
# task :spec => 'spec:ci'
 
# namespace :spec do
# namespace :setup do
# # Setup for 'Subtend' specs. No need to call this yourself.
# task :subtend do
# Dir["spec/subtend/**/Rakefile"].each do |rakefile|
# sh "rake -f #{rakefile}"
# end
# end
# end
 
# desc "Run continuous integration examples"
# task :ci => :build do
# clear_compiler
 
# target = ENV['SPEC_TARGET'] || 'rbx'
# system %(shotgun/rubinius -e 'puts "rbx build: \#{Rubinius::BUILDREV}"') if target == 'rbx'
# sh "bin/mspec ci -t #{target}"
# end
 
# spec_targets = %w(compiler core language library parser rubinius)
# # Build a spec:<task_name> for each group of Rubinius specs
# spec_targets.each do |group|
# desc "Run #{group} examples"
# task group do
# sh "bin/mspec spec/#{group}"
# end
# end
 
# desc "Run subtend (Rubinius C API) examples"
# task :subtend => "spec:setup:subtend" do
# sh "bin/mspec spec/rubinius/subtend"
# end
 
# # Specdiffs to make it easier to see what your changes have affected :)
# desc 'Run specs and produce a diff against current base'
# task :diff => 'diff:run'
 
# namespace :diff do
# desc 'Run specs and produce a diff against current base'
# task :run do
# system 'bin/mspec -f ci -o spec/reports/specdiff.txt spec'
# system 'diff -u spec/reports/base.txt spec/reports/specdiff.txt'
# system 'rm spec/reports/specdiff.txt'
# end
 
# desc 'Replace the base spec file with a new one'
# task :replace do
# system 'bin/mspec -f ci -o spec/reports/base.txt spec'
# end
# end
 
# task :r2r do
# puts ARGV.inspect
# end
# end
 
# # MISC TASKS
 
# desc "Build task for CruiseControl"
# task :ccrb => [:build, 'spec:ci']