mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-28 11:21:12 +08:00
aa2b9ef32e
* Added python script to generate all packages file list, added to azure pipeline to build at the end of the run * fixed an issue that causes some leading slashes were being removed * Header Database now includes hpp files for C++ header files * Changed Header Database to include all files under \include\ folder * Apply suggestions from code review, changing condition from eq to ne Co-authored-by: Billy O'Neal <bion@microsoft.com> * Update last condition from eq to ne Co-authored-by: Billy O'Neal <bion@microsoft.com>
vcpkg-eg-mac
VMs
Table of Contents
Basic Usage
The simplest usage, and one which should be used for when spinning up new VMs, and when restarting old ones, is a simple:
$ cd ~/vagrant/vcpkg-eg-mac
$ vagrant up
Any modifications to the machines should be made in configuration/VagrantFile
and Setup-VagrantMachines.ps1
, and make sure to push any changes!
Setting up a new macOS machine
Before anything else, one must download brew
and powershell
.
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
$ brew cask install powershell
Then, we need to download the vcpkg
repository:
$ git clone https://github.com/microsoft/vcpkg
And now all we need to do is set it up! Replace XX
with the number of
the virtual machine. Generally, that should be the same as the number
for the physical machine; i.e., vcpkgmm-04 will have vcpkg-eg-mac-04.
$ cd vcpkg/scripts/azure-pipelines/osx
$ ./Install-Prerequisites.ps1 -Force
# NOTE: you may get an error about CoreCLR; see the following paragraph if you do
$ ./Setup-VagrantMachines.ps1 XX \
-Pat '<get this from azure>' \
-ArchivesUsername '<get this from the archives share>' \
-ArchivesAccessKey '<get this from the archives share>' \
-ArchivesUrn '<something>.file.core.windows.net' \
-ArchivesShare 'archives'
$ cd ~/vagrant/vcpkg-eg-mac
$ vagrant up
If you see the following error:
Failed to initialize CoreCLR, HRESULT: 0x8007001F
You have to reboot the machine; run
$ sudo shutdown -r now
and wait for the machine to start back up. Then, start again from
Install-Prerequisites.ps1
.