summaryrefslogtreecommitdiffhomepage
path: root/g3doc
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2020-04-28 12:51:24 -0700
committerAdin Scannell <ascannell@google.com>2020-05-06 14:15:18 -0700
commit3cb00c97e953df3d1970e1462d8dbcd47d496d61 (patch)
treeda81ba457ff4e3e655c69f0b3862154e7cc940d8 /g3doc
parentf126de6a28b9d64abcab37392cde812957eb9a82 (diff)
Add note about AArch64 support.
Diffstat (limited to 'g3doc')
-rw-r--r--g3doc/user_guide/FAQ.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/g3doc/user_guide/FAQ.md b/g3doc/user_guide/FAQ.md
index a84ac3c48..7707217fb 100644
--- a/g3doc/user_guide/FAQ.md
+++ b/g3doc/user_guide/FAQ.md
@@ -7,7 +7,8 @@ Today, gVisor requires Linux.
### What CPU architectures are supported? {#supported-cpus}
gVisor currently supports [x86_64/AMD64](https://en.wikipedia.org/wiki/X86-64)
-compatible processors.
+compatible processors. Preliminary support is also available for
+[ARM64](https://en.wikipedia.org/wiki/ARM_architecture#AArch64).
### Do I need to modify my Linux application to use gVisor? {#modify-app}
@@ -17,8 +18,11 @@ No. gVisor is capable of running unmodified Linux binaries.
gVisor supports Linux
[ELF](https://en.wikipedia.org/wiki/Executable_and_Linkable_Format) binaries.
+
Binaries run in gVisor should be built for the
-[AMD64](https://en.wikipedia.org/wiki/X86-64) CPU architecture.
+[AMD64](https://en.wikipedia.org/wiki/X86-64) or
+[AArch64](https://en.wikipedia.org/wiki/ARM_architecture#AArch64) CPU
+architectures.
### Can I run Docker images using gVisor? {#docker-images}