2011-05-24 14:17:58 -04:00
|
|
|
require 'bundler/setup'
|
|
|
|
Bundler::GemHelper.install_tasks
|
|
|
|
|
2012-04-25 23:46:30 -04:00
|
|
|
require 'rspec/core/rake_task'
|
|
|
|
RSpec::Core::RakeTask.new(:spec)
|
2011-05-24 14:17:58 -04:00
|
|
|
|
2012-04-25 23:46:30 -04:00
|
|
|
V8_Version = Libv8::VERSION.gsub(/\.\d$/,'')
|
|
|
|
V8_Source = File.expand_path '../vendor/v8', __FILE__
|
2011-05-24 14:17:58 -04:00
|
|
|
|
2012-05-12 06:38:07 -04:00
|
|
|
require File.expand_path '../ext/libv8/make.rb', __FILE__
|
|
|
|
include Libv8::Make
|
|
|
|
|
2012-04-26 11:28:27 -04:00
|
|
|
desc "setup the vendored v8 source to correspond to the libv8 gem version and prepare deps"
|
2012-04-25 23:46:30 -04:00
|
|
|
task :checkout do
|
|
|
|
sh "git submodule update --init"
|
|
|
|
Dir.chdir(V8_Source) do
|
|
|
|
sh "git fetch"
|
2012-05-09 21:07:19 -04:00
|
|
|
sh "git checkout #{V8_Version} -f"
|
2012-05-12 06:38:30 -04:00
|
|
|
sh "#{make} dependencies"
|
2011-05-25 16:41:01 -04:00
|
|
|
end
|
2012-05-12 10:41:09 -04:00
|
|
|
|
|
|
|
# Fix gyp trying to build platform-linux on FreeBSD 9 and FreeBSD 10.
|
|
|
|
# Based on: https://chromiumcodereview.appspot.com/10079030/patch/1/2
|
2012-05-12 11:07:28 -04:00
|
|
|
sh "patch -N -p0 -d vendor/v8 < patches/add-freebsd9-and-freebsd10-to-gyp-GetFlavor.patch"
|
2012-07-01 23:36:02 -04:00
|
|
|
sh "patch -N -p1 -d vendor/v8 < patches/fPIC-on-linux-x64.patch"
|
2011-05-25 16:41:01 -04:00
|
|
|
end
|
|
|
|
|
2012-04-26 11:28:27 -04:00
|
|
|
desc "compile v8 via the ruby extension mechanism"
|
2012-04-25 23:46:30 -04:00
|
|
|
task :compile do
|
2012-04-26 11:28:27 -04:00
|
|
|
sh "ruby ext/libv8/extconf.rb"
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
desc "manually invoke the GYP compile. Useful for seeing debug output"
|
|
|
|
task :manual_compile do
|
2012-05-01 17:47:07 -04:00
|
|
|
require File.expand_path '../ext/libv8/arch.rb', __FILE__
|
|
|
|
include Libv8::Arch
|
2012-04-25 23:46:30 -04:00
|
|
|
Dir.chdir(V8_Source) do
|
2012-05-12 06:44:16 -04:00
|
|
|
sh %Q{#{make} -j2 #{libv8_arch}.release GYPFLAGS="-Dhost_arch=#{libv8_arch}"}
|
2011-05-25 16:41:01 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-21 08:55:00 -04:00
|
|
|
def get_binary_gemspec(platform = RUBY_PLATFORM)
|
2012-04-25 23:26:17 -04:00
|
|
|
gemspec = eval(File.read('libv8.gemspec'))
|
2012-06-21 08:55:00 -04:00
|
|
|
gemspec.platform = Gem::Platform.new(platform)
|
|
|
|
gemspec
|
|
|
|
end
|
|
|
|
|
|
|
|
begin
|
|
|
|
binary_gem_name = File.basename get_binary_gemspec.cache_file
|
|
|
|
rescue
|
|
|
|
binary_gem_name = ''
|
|
|
|
end
|
|
|
|
|
|
|
|
desc "build a binary gem #{binary_gem_name}"
|
|
|
|
task :binary => :compile do
|
|
|
|
gemspec = get_binary_gemspec
|
2012-04-25 23:26:17 -04:00
|
|
|
|
|
|
|
# We don't need most things for the binary
|
2012-05-01 18:04:47 -04:00
|
|
|
gemspec.files = ['lib/libv8.rb', 'ext/libv8/arch.rb', 'lib/libv8/version.rb']
|
2012-04-25 23:26:17 -04:00
|
|
|
# V8
|
|
|
|
gemspec.files += Dir['vendor/v8/include/*']
|
2012-05-01 18:04:47 -04:00
|
|
|
gemspec.files += Dir['vendor/v8/out/**/*.a']
|
2012-04-25 23:26:17 -04:00
|
|
|
FileUtils.mkdir_p 'pkg'
|
|
|
|
FileUtils.mv(Gem::Builder.new(gemspec).build, 'pkg')
|
|
|
|
end
|
|
|
|
|
|
|
|
desc "clean up artifacts of the build"
|
2012-04-25 23:46:30 -04:00
|
|
|
task :clean do
|
|
|
|
sh "rm -rf pkg"
|
2012-04-26 11:28:27 -04:00
|
|
|
sh "git clean -df"
|
2012-04-26 10:52:47 -04:00
|
|
|
sh "cd #{V8_Source} && git clean -dxf"
|
2011-06-15 16:55:18 -04:00
|
|
|
end
|
|
|
|
|
2012-04-26 10:52:47 -04:00
|
|
|
task :default => [:checkout, :compile, :spec]
|
2012-05-12 06:44:16 -04:00
|
|
|
task :build => [:clean, :checkout]
|