From 1bc1c545f38a1888103e0b4b050d3ad50d77ef9d Mon Sep 17 00:00:00 2001 From: Ryan Boland Date: Apr 17 2020 12:12:54 +0000 Subject: Merge pull request #196 from casperisfine/drop-32bit-targets Fix rake gem:native task --- diff --git a/Rakefile b/Rakefile index 85c7dff..d75e653 100644 --- a/Rakefile +++ b/Rakefile @@ -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