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 d552f95ada..16b8a0408c 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", moduleName != null ? moduleName + "/" : "", + super(String.format("%sos/%s/%s does not exist (see InstallationGuide.html, 'Building Native Components')", moduleName != null ? moduleName + "/" : "", platform.getDirectoryName(), fileName)); this.platform = platform; } diff --git a/GhidraDocs/InstallationGuide.html b/GhidraDocs/InstallationGuide.html index 3a9b217e8e..ee24ebdbe2 100644 --- a/GhidraDocs/InstallationGuide.html +++ b/GhidraDocs/InstallationGuide.html @@ -3,14 +3,15 @@
Ghidra requires several native binaries to be present in order to successfully run. An official -Ghidra release includes native binaries for the following platforms:
+public Ghidra release includes native binaries for the following platforms. + +NOTE: For some non-public Ghidra releases macOS natives may be omitted.
In order to build native binaries for your platform, you will need the following installed on your +
For supported systems where native binaries have not been supplied, or those that are supplied +fail to run properly, it may be neccessary to build the native Ghidra binaries. +In order to build native binaries for your platform, you will need the following installed on your system:
xcode-select --install
To build the native binaries for your current platform, execute the following script:
diff --git a/build.gradle b/build.gradle index 75a2acf404..397cb1d27f 100644 --- a/build.gradle +++ b/build.gradle @@ -48,7 +48,7 @@ if ("32".equals(System.getProperty("sun.arch.data.model"))) { /*************************************************************************************** * Identify supported Python command ***************************************************************************************/ -project.ext.SUPPORTED_PY_VERSIONS = ['3.12', '3.11', '3.10', '3.9', '3.8', '3.7'] +project.ext.SUPPORTED_PY_VERSIONS = ['3.12', '3.11', '3.10', '3.9'] project.ext.PYTHON3 = findPython3() /********************************************************************************* @@ -213,10 +213,10 @@ def findPython3() { } } // Don't fail until task execution. Just let "python3" fail. - // Force use of non-existent python3.7 instead of unsupported python version + // Force use of non-existent python3.9 instead of unsupported python version // which should fail if a python build is performed. println("Warning: Python3 command not found (required for build)") - return 'python3.7' + return 'python3.9' } /******************************************************************************************<GhidraInstallDir>/support/buildNatives(.bat)