all: canonicalize win32 and win64 file names
This commit is contained in:
+20
-25
@@ -518,7 +518,7 @@ constexpr bool string_ge(const char *a, const char *b) {
|
||||
#define UPX_E_INVALID_ARGUMENT (-10)
|
||||
|
||||
|
||||
// Executable formats. Note: big endian types are >= 128.
|
||||
// Executable formats (info: big endian types are >= 128); DO NOT CHANGE
|
||||
#define UPX_F_DOS_COM 1
|
||||
#define UPX_F_DOS_SYS 2
|
||||
#define UPX_F_DOS_EXE 3
|
||||
@@ -527,7 +527,7 @@ constexpr bool string_ge(const char *a, const char *b) {
|
||||
//#define UPX_F_VXD_LE 6 // NOT IMPLEMENTED
|
||||
#define UPX_F_DOS_EXEH 7 // OBSOLETE
|
||||
#define UPX_F_TMT_ADAM 8
|
||||
#define UPX_F_WIN32_PE 9
|
||||
#define UPX_F_W32PE_I386 9
|
||||
#define UPX_F_LINUX_i386 10
|
||||
//#define UPX_F_WIN16_NE 11 // NOT IMPLEMENTED
|
||||
#define UPX_F_LINUX_ELF_i386 12
|
||||
@@ -539,52 +539,47 @@ constexpr bool string_ge(const char *a, const char *b) {
|
||||
#define UPX_F_PS1_EXE 18
|
||||
#define UPX_F_VMLINUX_i386 19
|
||||
#define UPX_F_LINUX_ELFI_i386 20
|
||||
#define UPX_F_WINCE_ARM_PE 21
|
||||
#define UPX_F_LINUX_ELF64_AMD 22
|
||||
#define UPX_F_LINUX_ELF32_ARMEL 23
|
||||
#define UPX_F_W32PE_ARM 21
|
||||
#define UPX_F_LINUX_ELF64_AMD64 22
|
||||
#define UPX_F_LINUX_ELF32_ARM 23
|
||||
#define UPX_F_BSD_i386 24
|
||||
#define UPX_F_BSD_ELF_i386 25
|
||||
#define UPX_F_BSD_SH_i386 26
|
||||
|
||||
#define UPX_F_VMLINUX_AMD64 27
|
||||
#define UPX_F_VMLINUX_ARMEL 28
|
||||
#define UPX_F_VMLINUX_ARM 28
|
||||
#define UPX_F_MACH_i386 29
|
||||
#define UPX_F_LINUX_ELF32_MIPSEL 30
|
||||
#define UPX_F_VMLINUZ_ARMEL 31
|
||||
#define UPX_F_MACH_ARMEL 32
|
||||
|
||||
#define UPX_F_VMLINUZ_ARM 31
|
||||
#define UPX_F_MACH_ARM 32
|
||||
#define UPX_F_DYLIB_i386 33
|
||||
#define UPX_F_MACH_AMD64 34
|
||||
#define UPX_F_DYLIB_AMD64 35
|
||||
|
||||
#define UPX_F_WIN64_PEP 36
|
||||
|
||||
#define UPX_F_MACH_ARM64EL 37
|
||||
|
||||
//#define UPX_F_MACH_PPC64LE 38 // DOES NOT EXIST
|
||||
#define UPX_F_LINUX_ELFPPC64LE 39
|
||||
#define UPX_F_W64PE_AMD64 36
|
||||
#define UPX_F_MACH_ARM64 37
|
||||
//#define UPX_F_MACH_PPC64LE 38 // DOES NOT EXIST
|
||||
#define UPX_F_LINUX_ELF64_PPC64LE 39
|
||||
#define UPX_F_VMLINUX_PPC64LE 40
|
||||
//#define UPX_F_DYLIB_PPC64LE 41 // DOES NOT EXIST
|
||||
|
||||
#define UPX_F_LINUX_ELF64_ARM 42
|
||||
//#define UPX_F_DYLIB_PPC64LE 41 // DOES NOT EXIST
|
||||
#define UPX_F_LINUX_ELF64_ARM64 42
|
||||
#define UPX_F_W64PE_ARM64 43 // NOT YET IMPLEMENTED
|
||||
#define UPX_F_W64PE_ARM64EC 44 // NOT YET IMPLEMENTED
|
||||
|
||||
#define UPX_F_ATARI_TOS 129
|
||||
//#define UPX_F_SOLARIS_SPARC 130 // NOT IMPLEMENTED
|
||||
#define UPX_F_MACH_PPC32 131
|
||||
#define UPX_F_LINUX_ELFPPC32 132
|
||||
#define UPX_F_LINUX_ELF32_PPC32 132
|
||||
#define UPX_F_LINUX_ELF32_ARMEB 133
|
||||
#define UPX_F_MACH_FAT 134
|
||||
#define UPX_F_VMLINUX_ARMEB 135
|
||||
#define UPX_F_VMLINUX_PPC32 136
|
||||
#define UPX_F_LINUX_ELF32_MIPSEB 137
|
||||
#define UPX_F_LINUX_ELF32_MIPS 137
|
||||
#define UPX_F_DYLIB_PPC32 138
|
||||
|
||||
#define UPX_F_MACH_PPC64 139
|
||||
#define UPX_F_LINUX_ELFPPC64 140
|
||||
#define UPX_F_LINUX_ELF64_PPC64 140
|
||||
#define UPX_F_VMLINUX_PPC64 141
|
||||
#define UPX_F_DYLIB_PPC64 142
|
||||
|
||||
// compression methods - DO NOT CHANGE
|
||||
// compression methods; DO NOT CHANGE
|
||||
#define M_NRV2B_LE32 2
|
||||
#define M_NRV2B_8 3
|
||||
#define M_NRV2B_LE16 4
|
||||
|
||||
Reference in New Issue
Block a user