1
0
Fork 0
mirror of https://github.com/rubyjs/libv8 synced 2023-03-27 23:21:48 -04:00

build linux binaries with gcc-4.8

This commit is contained in:
Charles Lowell 2015-07-01 23:30:28 -05:00
parent fb8aaa8a7b
commit dc25d944a2
2 changed files with 8 additions and 4 deletions

View file

@ -67,7 +67,9 @@ Vagrant.configure(2) do |config|
# documentation for more information about their specific syntax and use.
config.vm.provision "shell", inline: <<-SHELL
sudo apt-get update
sudo apt-get install -y build-essential git git-svn python ruby ruby-dev
sudo gem install bundler
sudo apt-get install -y gcc-4.8 g++-4.8 build-essential git git-svn python ruby ruby-dev
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.8
sudo update-alternatives --config gcc
gem install bundler
SHELL
end