diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2019-09-22 20:35:16 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2019-09-22 20:35:16 +0200 |
commit | d15008fdef26f8d461a4468b74477b224c372a98 (patch) | |
tree | be917a604a9961a763fc5da29e45a5a66d0b667a /sys/src/ape | |
parent | d559cd005c3831217c55bdd7e334c572d515241d (diff) |
ape/cc: add spim
Diffstat (limited to 'sys/src/ape')
-rw-r--r-- | sys/src/ape/cmd/cc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/src/ape/cmd/cc.c b/sys/src/ape/cmd/cc.c index fff45f9fe..24a075571 100644 --- a/sys/src/ape/cmd/cc.c +++ b/sys/src/ape/cmd/cc.c @@ -25,12 +25,13 @@ typedef struct Objtype { 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 { |