Commit 4766a018 authored by Martin Storsjo's avatar Martin Storsjo Committed by Alexandre Julliard

widl: Allow switching between 32 and 64 bit ARM with the -m32/64 option.

parent 53cba4f0
......@@ -796,8 +796,12 @@ int main(int argc,char *argv[])
if (pointer_size == 4) target_cpu = CPU_x86;
else pointer_size = 8;
break;
case CPU_ARM:
if (pointer_size == 8) target_cpu = CPU_ARM64;
else pointer_size = 4;
break;
case CPU_ARM64:
if (pointer_size == 4) error( "Cannot build 32-bit code for this CPU\n" );
if (pointer_size == 4) target_cpu = CPU_ARM;
pointer_size = 8;
break;
case CPU_POWERPC64:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment