recognise riscv64 as a valid arch in mandoc
authorjsg <jsg@openbsd.org>
Wed, 28 Apr 2021 14:29:50 +0000 (14:29 +0000)
committerjsg <jsg@openbsd.org>
Wed, 28 Apr 2021 14:29:50 +0000 (14:29 +0000)
ok jmc@ deraadt@

share/man/man7/mdoc.7
usr.bin/mandoc/arch.c
usr.bin/mandoc/cgi.c

index 25cd501..8e19506 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: mdoc.7,v 1.173 2020/08/27 09:29:16 fcambus Exp $
+.\"    $OpenBSD: mdoc.7,v 1.174 2021/04/28 14:29:50 jsg Exp $
 .\"
 .\" Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
 .\" Copyright (c) 2010, 2011, 2013-2020 Ingo Schwarze <schwarze@openbsd.org>
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd $Mdocdate: August 27 2020 $
+.Dd $Mdocdate: April 28 2021 $
 .Dt MDOC 7
 .Os
 .Sh NAME
@@ -1353,6 +1353,7 @@ the following are valid architectures:
 .Cm mips64 ,
 .Cm octeon ,
 .Cm powerpc64 ,
+.Cm riscv64 ,
 .Cm sgi ,
 and
 .Cm sparc64 .
index 782f2c7..b9d8343 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: arch.c,v 1.12 2020/06/29 19:16:59 schwarze Exp $ */
+/*     $OpenBSD: arch.c,v 1.13 2021/04/28 14:29:50 jsg Exp $ */
 /*
  * Copyright (c) 2017, 2019 Ingo Schwarze <schwarze@openbsd.org>
  *
@@ -24,7 +24,7 @@ arch_valid(const char *arch, enum mandoc_os os)
        const char *openbsd_arch[] = {
                "alpha", "amd64", "arm64", "armv7", "hppa", "i386",
                "landisk", "loongson", "luna88k", "macppc", "mips64",
-               "octeon", "powerpc64", "sgi", "sparc64", NULL
+               "octeon", "powerpc64", "riscv64", "sgi", "sparc64", NULL
        };
        const char *netbsd_arch[] = {
                "acorn26", "acorn32", "algor", "alpha", "amiga",
index c6db66f..8beed26 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: cgi.c,v 1.111 2020/06/29 19:16:59 schwarze Exp $ */
+/* $OpenBSD: cgi.c,v 1.112 2021/04/28 14:29:50 jsg Exp $ */
 /*
  * Copyright (c) 2014-2019 Ingo Schwarze <schwarze@usta.de>
  * Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -121,7 +121,8 @@ static      const char *const arch_names[] = {
     "amd64",       "alpha",       "armv7",       "arm64",
     "hppa",        "i386",        "landisk",     "loongson",
     "luna88k",     "macppc",      "mips64",      "octeon",
-    "powerpc64",   "sgi",         "socppc",      "sparc64",
+    "powerpc64",   "riscv64",     "sgi",         "socppc",
+    "sparc64",
 
     "amiga",       "arc",         "armish",      "arm32",
     "atari",       "aviion",      "beagle",      "cats",