forked from microsoft/vcpkg-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Detect changes in the 'ce' version and rebootstrap it if it doesn't m…
…atch what vcpkg expects. Note that the "VCPKG_BASE_VERSION" unset path will be substantially modified after microsoft#428 , this change always rebootstraps CE. (I can see an argument for it to never rebootstrap CE?) Resolves https://devdiv.visualstudio.com/DefaultCollection/DevDiv/_workitems/edit/1494969
- Loading branch information
1 parent
91494e3
commit fea0d39
Showing
4 changed files
with
103 additions
and
35 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,10 @@ | |
"ChecksUpdateVcpkg": "updating vcpkg by rerunning bootstrap-vcpkg may resolve this failure.", | ||
"CouldNotDeduceNugetIdAndVersion": "Could not deduce nuget id and version from filename: {path}", | ||
"_CouldNotDeduceNugetIdAndVersion.comment": "example of {path} is '/foo/bar'.\n", | ||
"DownloadingVcpkgCeBundle": "Downloading vcpkg-ce bundle {version}...", | ||
"_DownloadingVcpkgCeBundle.comment": "example of {version} is '1.3.8'.\n", | ||
"DownloadingVcpkgCeBundleLatest": "Downloading latest vcpkg-ce bundle...", | ||
"_DownloadingVcpkgCeBundleLatest.comment": "This message is normally displayed only in development.\n", | ||
"EmptyLicenseExpression": "SPDX license expression was empty.", | ||
"ErrorIndividualPackagesUnsupported": "Error: In manifest mode, `vcpkg install` does not support individual package arguments.\nTo install additional packages, edit vcpkg.json and then run `vcpkg install` without any package arguments.", | ||
"ErrorInvalidClassicModeOption": "Error: The option --{option} is not supported in classic mode and no manifest was found.", | ||
|
@@ -71,6 +75,7 @@ | |
"ErrorRequirePackagesToInstall": "Error: No packages were listed for installation and no manifest was found.", | ||
"ErrorVcvarsUnsupported": "Error: in triplet {triplet}: Use of Visual Studio's Developer Prompt is unsupported on non-Windows hosts.\nDefine 'VCPKG_CMAKE_SYSTEM_NAME' or 'VCPKG_CHAINLOAD_TOOLCHAIN_FILE' in the triplet file.", | ||
"_ErrorVcvarsUnsupported.comment": "example of {triplet} is 'x64-windows'.\n", | ||
"FailedToProvisionCe": "Failed to provision vcpkg-ce.", | ||
"ForceSystemBinariesOnWeirdPlatforms": "Environment variable VCPKG_FORCE_SYSTEM_BINARIES must be set on arm, s390x, and ppc64le platforms.", | ||
"FormattedParseMessageExpression": " on expression: {value}", | ||
"_FormattedParseMessageExpression.comment": "Example of {value} is 'x64 & windows'\n", | ||
|
@@ -147,6 +152,7 @@ | |
"VSExaminedInstances": "The following Visual Studio instances were considered:", | ||
"VSExaminedPaths": "The following paths were examined for Visual Studio instances:", | ||
"VSNoInstances": "Could not locate a complete Visual Studio instance", | ||
"VcpkgCeIsExperimental": "vcpkg-ce ('configure environment') is experimental and may change at any time.", | ||
"VcpkgDisallowedClassicMode": "Error: Could not locate a manifest (vcpkg.json) above the current working directory.\nThis vcpkg distribution does not have a classic mode instance.", | ||
"VcpkgHasCrashed": "vcpkg.exe has crashed.\nPlease send an email to:\n {email}\ncontaining a brief summary of what you were trying to do and the following data blob:", | ||
"_VcpkgHasCrashed.comment": "example of {email} is '[email protected]'.\n", | ||
|
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