Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix rake gem:native task #196

Merged
merged 1 commit into from
Apr 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@ task 'gem:native' do

# The RUBY_CC_VERSION here doesn't matter for the final package.
# Only one version should be specified, as the shared library is Ruby-agnostic.
#
# g++-multilib is installed for 64->32-bit cross-compilation.
RakeCompilerDock.sh "sudo apt-get install -y g++-multilib && gem i rake bundler --no-document && bundle && "\
RakeCompilerDock.sh "gem i rake bundler --no-document && bundle && "\
"rake clean && rake cross native gem MAKE='nice make -j`nproc`' "\
"RUBY_CC_VERSION=2.6.0 CLEAN=1"
end
Expand Down