diff --git a/GPL/vsconfig.gradle b/GPL/vsconfig.gradle index 9e66f80b67..610aa08313 100644 --- a/GPL/vsconfig.gradle +++ b/GPL/vsconfig.gradle @@ -45,7 +45,7 @@ def configureVisualStudio() { 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 InstallationGuide.html to verify you are using a supported version of Visual Studio." + 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); diff --git a/Ghidra/Features/Decompiler/src/main/java/ghidra/app/decompiler/DecompileProcess.java b/Ghidra/Features/Decompiler/src/main/java/ghidra/app/decompiler/DecompileProcess.java index b73169f9e7..ad19f66b24 100644 --- a/Ghidra/Features/Decompiler/src/main/java/ghidra/app/decompiler/DecompileProcess.java +++ b/Ghidra/Features/Decompiler/src/main/java/ghidra/app/decompiler/DecompileProcess.java @@ -169,7 +169,7 @@ public class DecompileProcess { if (!getAndSetErrorDisplayed()) { String err = new String(nativeProcess.getErrorStream().readAllBytes()); String errorDetail = "Decompiler executable may not be compatible with your system and may need to be rebuilt.\n" + - "(see InstallationGuide.html, 'Building Native Components').\n\n" + + "(see GettingStarted.md, 'Building Native Components').\n\n" + err; Msg.showError(this, null, "Failed to launch Decompiler process", errorDetail); } diff --git a/Ghidra/Features/GnuDemangler/src/main/java/ghidra/app/util/demangler/gnu/GnuDemanglerNativeProcess.java b/Ghidra/Features/GnuDemangler/src/main/java/ghidra/app/util/demangler/gnu/GnuDemanglerNativeProcess.java index 73cfa127ee..fd58c70ac5 100644 --- a/Ghidra/Features/GnuDemangler/src/main/java/ghidra/app/util/demangler/gnu/GnuDemanglerNativeProcess.java +++ b/Ghidra/Features/GnuDemangler/src/main/java/ghidra/app/util/demangler/gnu/GnuDemanglerNativeProcess.java @@ -191,7 +191,7 @@ public class GnuDemanglerNativeProcess { errorDetail = exc.getMessage(); } errorDetail = "GNU Demangler executable may not be compatible with your system and may need to be rebuilt.\n" + - "(see InstallationGuide.html, 'Building Native Components').\n\n" + + "(see GettingStarted.md, 'Building Native Components').\n\n" + errorDetail; Msg.showError(this, null, "Failed to launch GNU Demangler process", errorDetail); } diff --git a/Ghidra/Framework/Generic/src/main/java/ghidra/framework/OSFileNotFoundException.java b/Ghidra/Framework/Generic/src/main/java/ghidra/framework/OSFileNotFoundException.java index 16b8a0408c..e05784fd4a 100644 --- a/Ghidra/Framework/Generic/src/main/java/ghidra/framework/OSFileNotFoundException.java +++ b/Ghidra/Framework/Generic/src/main/java/ghidra/framework/OSFileNotFoundException.java @@ -34,7 +34,7 @@ public class OSFileNotFoundException extends FileNotFoundException { * @param fileName The file name associated with this exception, from the given module */ public OSFileNotFoundException(Platform platform, String moduleName, String fileName) { - super(String.format("%sos/%s/%s does not exist (see InstallationGuide.html, 'Building Native Components')", moduleName != null ? moduleName + "/" : "", + super(String.format("%sos/%s/%s does not exist (see GettingStarted.md, 'Building Native Components')", moduleName != null ? moduleName + "/" : "", platform.getDirectoryName(), fileName)); this.platform = platform; }