Commit 801a47ad authored by ossy.szeged's avatar ossy.szeged Committed by Commit bot

Fix the PPAPI build on AArch64.

BUG=668208

Review-Url: https://codereview.chromium.org/2525993002
Cr-Commit-Position: refs/heads/master@{#435022}
parent 4d116bd4
......@@ -12,7 +12,7 @@
#include "ppapi/tests/all_c_includes.h"
#if !defined(__native_client__) && (defined(_M_X64) || defined(__x86_64__))
#if !defined(__native_client__) && (defined(_M_X64) || defined(__x86_64__) || defined(__aarch64__))
/* This section is for 64-bit compilation on Windows, Mac, and Linux. Native
client follows ILP32 even if -m64 is used, so NaCl code is explicitly treated
as 32-bit. This means pointers are always 4 bytes in native client, and it
......
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