Skip to content

Commit

Permalink
Actually enabling cross compilation.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasnoble committed Feb 5, 2016
1 parent 4e141bb commit bbb188a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ruby/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,17 @@ else
Rake::ExtensionTask.new("protobuf_c", spec) do |ext|
ext.ext_dir = "ext/google/protobuf_c"
ext.lib_dir = "lib/google"
ext.cross_compile = true
ext.cross_platform = [
'x86-mingw32', 'x64-mingw32',
'x86_64-linux', 'x86-linux',
'universal-darwin'
]
end

task 'gem:windows' do
require 'rake_compiler_dock'
RakeCompilerDock.sh "bundle && rake cross native gem"
RakeCompilerDock.sh "bundle && rake cross native gem RUBY_CC_VERSION=2.3.0:2.2.2:2.1.6"
end
end

Expand Down

0 comments on commit bbb188a

Please sign in to comment.