mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-01-06 20:53:55 -05:00
127 lines
5.5 KiB
Groovy
127 lines
5.5 KiB
Groovy
/* ###
|
|
* IP: Public Domain
|
|
*/
|
|
/****************************************************************************
|
|
* Establish Visual Studio configuration environment for Windows native builds
|
|
*
|
|
* NOTE: We do not rely on the VisualCpp plugin to identify paths since it has
|
|
* proven in the past to be unreliable when multiple versions of Visual Studio
|
|
* and SDKs are installed.
|
|
****************************************************************************/
|
|
|
|
if (!hasProperty("VISUAL_STUDIO_INSTALL_DIR") && isCurrentWindows()) {
|
|
|
|
// Initialize variables
|
|
rootProject.ext.VISUAL_STUDIO_INSTALL_DIR = ""
|
|
rootProject.ext.VISUAL_STUDIO_TOOLS_VERSION_DEFAULT = ""
|
|
rootProject.ext.VISUAL_STUDIO_SDK_DIR_DEFAULT = ""
|
|
rootProject.ext.VISUAL_STUDIO_SDK_VERSION_DEFAULT = ""
|
|
rootProject.ext.VISUAL_STUDIO_SDK_VERSION_OVERRIDE = ""
|
|
rootProject.ext.VISUAL_STUDIO_VCVARS_CMD = ""
|
|
|
|
// Use vswhere.exe to search for latest Visual Studio installation
|
|
println "Searching for latest Visual Studio and required components..."
|
|
def programFiles = System.getenv()["ProgramFiles(x86)"] ?: "C:\\Program Files (x86)"
|
|
def vswherePath = findProperty("vswherePath") ?: "${programFiles}\\Microsoft Visual Studio\\Installer\\vswhere.exe"
|
|
if (!file(vswherePath).exists()) {
|
|
println " -> Visual Studio vswhere.exe not found at \"${vswherePath}\""
|
|
println " -> To manually specify the location of vswhere.exe, add \"-PvswherePath=<vswhere path>\" to the Gradle command line arguments"
|
|
return
|
|
}
|
|
def vswhereProcess = "\"${vswherePath}\" -products * -prerelease -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -format json -utf8".execute()
|
|
def vswhereOutput = vswhereProcess.text.trim()
|
|
def vswhereExit = vswhereProcess.exitValue()
|
|
if (vswhereExit != 0) {
|
|
if (vswhereExit == 87) { // ERROR_INVALID_PARAMATER
|
|
println " -> Visual Studio vswhere.exe was passed an unsupported argument!"
|
|
}
|
|
else {
|
|
println " -> Visual Studio vswhere.exe returned an error code (${vswhereExit})!"
|
|
}
|
|
println " -> Please confirm ${vswherePath} is version 2.5 or later."
|
|
println " -> Please check README.md or GettingStarted.md to verify you are using a supported version of Visual Studio."
|
|
return
|
|
}
|
|
def vswhereJson = new groovy.json.JsonSlurper().parseText(vswhereOutput);
|
|
|
|
// Our minimum supported version of vswhere does not support the -sort arg, so we must
|
|
// manually sort. The -sort arg was introduced in vswhere 2.6.7.
|
|
sortVisualStudioVersions(vswhereJson)
|
|
|
|
def usePrerelease = project.hasProperty("vswherePrerelease")
|
|
def i = -1
|
|
println " -> Searching for Visual Studio installations..."
|
|
vswhereJson.eachWithIndex { item, index ->
|
|
def isPrerelease = item.get("isPrerelease")
|
|
if (i == -1 && (usePrerelease || !isPrerelease)) {
|
|
i = index
|
|
}
|
|
println " ${index + 1}: ${item.displayName}" +
|
|
(i == index ? " (selected)" : "") +
|
|
(isPrerelease && !usePrerelease ? " (enable with -PvswherePrerelease)" : "")
|
|
println " - Installation Version: ${item.installationVersion}" +
|
|
(item.containsKey("unsupportedVersion") ? " (failed to sort)" : "")
|
|
println " - Installation Date: ${item.installDate}"
|
|
println " - Installation Path: ${item.installationPath}"
|
|
if (isPrerelease) {
|
|
println " - Prerelease"
|
|
}
|
|
}
|
|
if (i == -1) {
|
|
println " -> Visual Studio not found!"
|
|
return
|
|
}
|
|
|
|
def vsInstallDir = vswhereJson[i].installationPath
|
|
println " -> Installation Directory: ${vsInstallDir}"
|
|
|
|
// Use vcvarsall.bat to determine the latest Visual Studio's default SDK and tool versions
|
|
def vcvarsPath = "${vsInstallDir}\\VC\\Auxiliary\\Build\\vcvarsall.bat"
|
|
def vcvarsCmd = "\"${vcvarsPath}\" x86_amd64"
|
|
def vcvarsEnvCmd = "cmd /v:ON /c ${vcvarsCmd} > nul && cmd /c echo"
|
|
def sdkDir = "${vcvarsEnvCmd} !WindowsSdkDir!".execute().text.trim()
|
|
println " -> SDK Directory (default): ${sdkDir}"
|
|
def sdkVersion = "${vcvarsEnvCmd} !WindowsSDKVersion!".execute().text.trim().replace('\\', '')
|
|
println " -> SDK Version (default): ${sdkVersion}"
|
|
|
|
// Check Gradle properties for override values
|
|
def windowsTargetPlatformVersion = findProperty("WindowsTargetPlatformVersion")
|
|
println " -> SDK Version (override): " + (windowsTargetPlatformVersion ?: "N/A")
|
|
|
|
// Save Visual Studio information so other projects can access it
|
|
rootProject.ext.VISUAL_STUDIO_INSTALL_DIR = vsInstallDir
|
|
rootProject.ext.VISUAL_STUDIO_SDK_DIR_DEFAULT = sdkDir
|
|
rootProject.ext.VISUAL_STUDIO_SDK_VERSION_DEFAULT = sdkVersion
|
|
rootProject.ext.VISUAL_STUDIO_SDK_VERSION_OVERRIDE = windowsTargetPlatformVersion
|
|
rootProject.ext.VISUAL_STUDIO_VCVARS_CMD = vcvarsCmd
|
|
}
|
|
|
|
def sortVisualStudioVersions(vswhereJson) {
|
|
|
|
// Try to parse each version using Gradle's own version parser, marking the entries that failed
|
|
// (none should fail)
|
|
def validVersions = true
|
|
vswhereJson.each {
|
|
try {
|
|
GradleVersion.version(it.installationVersion)
|
|
}
|
|
catch (Exception e) {
|
|
it.put("unsupportedVersion", "true")
|
|
validVersions = false
|
|
}
|
|
}
|
|
|
|
// Establish a consistent ordering by first sorting by instance ID
|
|
vswhereJson.sort { a, b -> b.instanceId <=> a.instanceId }
|
|
|
|
// Primary sort by installation version. If all the version numbers were parseable with the
|
|
// GradleVersion class, use that class to achieve the correct ordering. Otherwise, fall back to
|
|
// lexicographic order.
|
|
if (validVersions) {
|
|
vswhereJson.sort { a, b -> GradleVersion.version(b.installationVersion) <=> GradleVersion.version(a.installationVersion) } // primary sort
|
|
}
|
|
else {
|
|
vswhereJson.sort { a, b -> b.installationVersion <=> a.installationVersion } // primary sort
|
|
}
|
|
}
|