git: 9front

Download patch

ref: 5d6a11a90fde3dcae679064c67612e8e3b8317bb
parent: e3f5a83c3e1c8c7757eaf77ba50dae2ad0ff2ca1
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sun Sep 22 16:35:16 EDT 2019

ape/cc: add spim

--- a/sys/src/ape/cmd/cc.c
+++ b/sys/src/ape/cmd/cc.c
@@ -25,12 +25,13 @@
 Objtype objtype[] = {
 	{"68020",	"2c", "2l", "2"},
 	{"arm",		"5c", "5l", "5"},
+	{"arm64",	"7c", "7l", "7"},
 	{"amd64",	"6c", "6l", "6"},
-	{"alpha",	"7c", "7l", "7"},
 	{"386",		"8c", "8l", "8"},
 	{"sparc",	"kc", "kl", "k"},
 	{"power",	"qc", "ql", "q"},
 	{"mips",	"vc", "vl", "v"},
+	{"spim",	"0c", "0l", "0"},
 };
 
 enum {
--