From 4a543c5f5104a91a45fcbfd78f880a681cb9ddcd Mon Sep 17 00:00:00 2001 From: phoebe Date: Fri, 21 Jul 2023 19:01:46 +0200 Subject: [PATCH] docs: add `arm32` and `i386` to the documented list of supported comptime architectures (#18932) --- doc/docs.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/docs.md b/doc/docs.md index e81cadda39..31046ae797 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -5583,13 +5583,13 @@ is compiled with `v -g` or `v -cg`. If you're using a custom ifdef, then you do need `$if option ? {}` and compile with`v -d option`. Full list of builtin options: -| OS | Compilers | Platforms | Other | -|--------------------------------|------------------|------------------|-----------------------------------------------| -| `windows`, `linux`, `macos` | `gcc`, `tinyc` | `amd64`, `arm64` | `debug`, `prod`, `test` | -| `mac`, `darwin`, `ios`, | `clang`, `mingw` | `x64`, `x32` | `js`, `glibc`, `prealloc` | -| `android`, `mach`, `dragonfly` | `msvc` | `little_endian` | `no_bounds_checking`, `freestanding` | -| `gnu`, `hpux`, `haiku`, `qnx` | `cplusplus` | `big_endian` | `no_segfault_handler`, `no_backtrace` | -| `solaris`, `termux` | | | `no_main` | +| OS | Compilers | Platforms | Other | +|--------------------------------|------------------|-------------------------------|-----------------------------------------------| +| `windows`, `linux`, `macos` | `gcc`, `tinyc` | `amd64`, `arm64`, `aarch64` | `debug`, `prod`, `test` | +| `mac`, `darwin`, `ios`, | `clang`, `mingw` | `i386`, `arm32` | `js`, `glibc`, `prealloc` | +| `android`, `mach`, `dragonfly` | `msvc` | `x64`, `x32` | `no_bounds_checking`, `freestanding` | +| `gnu`, `hpux`, `haiku`, `qnx` | `cplusplus` | `little_endian`, `big_endian` | `no_segfault_handler`, `no_backtrace` | +| `solaris`, `termux` | | | `no_main` | #### `$embed_file`