mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
Merge remote-tracking branch
'origin/GT-3615_ghidorahrex_PR-1499_astrelsky_AARCH64' Fixes #1499
This commit is contained in:
commit
2bcf714669
1 changed files with 3 additions and 3 deletions
|
@ -38,7 +38,7 @@ public enum Platform {
|
|||
/**
|
||||
* Identifies a Windows OS, the architecture for which we do not know or have not encountered
|
||||
*/
|
||||
WIN_UNKOWN(OperatingSystem.WINDOWS, Architecture.UNKNOWN, "win32", ".dll", ".exe"),
|
||||
WIN_UNKOWN(OperatingSystem.WINDOWS, Architecture.UNKNOWN, "win64", ".dll", ".exe"),
|
||||
|
||||
/**
|
||||
* Identifies a Linux OS.
|
||||
|
@ -46,14 +46,14 @@ public enum Platform {
|
|||
LINUX(OperatingSystem.LINUX, Architecture.X86, "linux32", ".so", ""),
|
||||
|
||||
/**
|
||||
* Identifies a Linux OS.
|
||||
* Identifies a Linux OS x86-64.
|
||||
*/
|
||||
LINUX_64(OperatingSystem.LINUX, Architecture.X86_64, "linux64", ".so", ""),
|
||||
|
||||
/**
|
||||
* Identifies a Linux OS, the architecture for which we do not know or have not encountered
|
||||
*/
|
||||
LINUX_UKNOWN(OperatingSystem.LINUX, Architecture.UNKNOWN, "linux32", ".so", ""),
|
||||
LINUX_UKNOWN(OperatingSystem.LINUX, Architecture.UNKNOWN, "linux64", ".so", ""),
|
||||
|
||||
/**
|
||||
* Identifies a Mac OS X for the Intel x86 32-bit platform.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue