Commit 1b440629 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

kernel32/tests: Add ARM64 support.

parent 855be0bb
......@@ -1787,6 +1787,8 @@ static BOOL create_fake_dll( LPCSTR filename )
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_SPARC;
#elif defined __arm__
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_ARMNT;
#elif defined __aarch64__
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_ARM64;
#else
# error You must specify the machine type
#endif
......
......@@ -64,6 +64,8 @@ static IMAGE_NT_HEADERS nt_header =
IMAGE_FILE_MACHINE_SPARC, /* Machine */
#elif defined __arm__
IMAGE_FILE_MACHINE_ARMNT, /* Machine */
#elif defined __aarch64__
IMAGE_FILE_MACHINE_ARM64, /* Machine */
#else
# error You must specify the machine type
#endif
......
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