Last active
August 29, 2015 13:57
-
-
Save curzona/9428213 to your computer and use it in GitHub Desktop.
Build EDK2 in vagrant box with GCC46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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