Skip to content

Instantly share code, notes, and snippets.

@curzona
Last active August 29, 2015 13:57
Show Gist options
  • Save curzona/9428213 to your computer and use it in GitHub Desktop.
Save curzona/9428213 to your computer and use it in GitHub Desktop.
Build EDK2 in vagrant box with GCC46
# Creates a virtual machine and builds the EDK2 source
# VirtualBox and Vagrant must be installed first
vagrant box add base http://files.vagrantup.com/precise64.box
vagrant init
vagrant up
vagrant ssh
sudo apt-get update
sudo apt-get install build-essential git uuid-dev iasl
git clone https://github.com/curzona/edk2.git
make -C BaseTools
. edksetup.sh
build -a X64 -t GCC46 -p MdeModulePkg/MdeModulePkg.dsc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment