Merge branch 'gerow-osx-vagrant' into strawberry-dev

This commit is contained in:
Kevin Lange 2015-06-22 22:06:27 -07:00
commit 2ad9f0ace5
2 changed files with 14 additions and 2 deletions

View File

@ -24,7 +24,7 @@ if [[ "$INSTALL_PACKAGES" == "true" ]] ; then
echo "If you don't want to do this and you're sure you have all of the required system packages, then interrupt the password prompt and run this script again with -q."
if [ -f /etc/debian_version ]; then
sudo apt-get install yasm genext2fs build-essential wget libmpfr-dev libmpc-dev libgmp3-dev qemu autoconf automake texinfo pkg-config
sudo apt-get install yasm genext2fs build-essential wget libmpfr-dev libmpc-dev libgmp3-dev qemu autoconf automake texinfo pkg-config git ctags
elif [ -f /etc/fedora-release ]; then
sudo yum groupinstall 'Development Tools'
sudo yum groupinstall 'Development Libraries'
@ -45,7 +45,9 @@ if [[ "$INSTALL_PACKAGES" == "true" ]] ; then
echo " - qemu"
echo " - texinfo"
echo " - pkg-config"
echo "(If you are on Arch, install: clang yasm genext2fs base-devel wget mpfr mpc gmp qemu autoconf automake texinfo pkg-config)"
echo " - git"
echo " - ctags"
echo "(If you are on Arch, install: clang yasm genext2fs base-devel wget mpfr mpc gmp qemu autoconf automake texinfo pkg-config git ctags)"
echo ""
echo "... then run this script (toolchain/toolchain-build.sh) again with the -q flag."
exit 1

10
util/Vagrantfile vendored Normal file
View File

@ -0,0 +1,10 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
end
end