public
Description: Rubinius, the Ruby VM
Homepage: http://rubini.us
Clone URL: git://github.com/evanphx/rubinius.git
Search Repo:
Improve running in dev mode. Use bin/rbx now.
evanphx (author)
Mon Jun 09 15:31:33 -0700 2008
commit  a109f3f22a564eb42081f93328c34a0e85153444
tree    263bff3d0139f23f0d3b77d7879a84e890524b7e
parent  c8b7beb9fd055db4021b878342d36e5694cfe557
...
31
32
33
 
34
35
36
...
49
50
51
52
53
54
55
...
31
32
33
34
35
36
37
...
50
51
52
 
53
54
55
0
@@ -31,6 +31,7 @@ shotgun/lib/*.d
0
 shotgun/lib/*.d.*
0
 shotgun/lib/subtend/*.d
0
 shotgun/lib/subtend/*.d.*
0
+shotgun/dev-tramp
0
 *.o
0
 *.lo
0
 *.a
0
@@ -49,7 +50,6 @@ shotgun/lib/subtend/*.d.*
0
 !bin/mkspec
0
 !bin/bm*
0
 !bin/contributors*
0
-bin/*
0
 lib/rbx
0
 
0
 attic/externals/syd-parser/pkg
...
121
122
123
124
125
 
 
 
 
 
 
126
127
128
...
254
255
256
 
257
258
259
...
121
122
123
 
 
124
125
126
127
128
129
130
131
132
...
258
259
260
261
262
263
264
0
@@ -121,8 +121,12 @@ namespace :build do
0
   file "shotgun/rubinius.bin" => c_source do
0
     sh make('vm')
0
   end
0
-
0
- file "shotgun/rubinius.local.bin" => c_source do
0
+
0
+ file "shotgun/dev-tramp" => "shotgun/dev-tramp.c" do
0
+ sh "cc -DBUILDDIR=\\\"#{Dir.pwd}/shotgun\\\" -o shotgun/dev-tramp shotgun/dev-tramp.c"
0
+ end
0
+
0
+ file "shotgun/rubinius.local.bin" => c_source + ["shotgun/dev-tramp"] do
0
     sh make('vm')
0
   end
0
 
0
@@ -254,6 +258,7 @@ namespace :clean do
0
   desc "Cleans up VM building site"
0
   task :shotgun do
0
     sh make('clean')
0
+ rm_f "shotgun/dev-tramp"
0
   end
0
 
0
   desc "Cleans up generated files"

Comments

    No one has commented yet.