Fix unimplemented Mach-O parsing for ARM64 platforms in QPluginLoader.
Change-Id: I4853b5ce1691bd84578ebe46af9f73270598387a Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
73bf1427fb
commit
e8224f8149
@ -59,6 +59,9 @@ static const cpu_type_t my_cputype = CPU_TYPE_X86;
|
|||||||
static const cpu_type_t my_cputype = CPU_TYPE_POWERPC64;
|
static const cpu_type_t my_cputype = CPU_TYPE_POWERPC64;
|
||||||
#elif defined(Q_PROCESSOR_POWER_32)
|
#elif defined(Q_PROCESSOR_POWER_32)
|
||||||
static const cpu_type_t my_cputype = CPU_TYPE_POWERPC;
|
static const cpu_type_t my_cputype = CPU_TYPE_POWERPC;
|
||||||
|
#elif defined(Q_PROCESSOR_ARM_64)
|
||||||
|
# define MACHO64
|
||||||
|
static const cpu_type_t my_cputype = CPU_TYPE_ARM64;
|
||||||
#elif defined(Q_PROCESSOR_ARM)
|
#elif defined(Q_PROCESSOR_ARM)
|
||||||
static const cpu_type_t my_cputype = CPU_TYPE_ARM;
|
static const cpu_type_t my_cputype = CPU_TYPE_ARM;
|
||||||
#else
|
#else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user