diff options
| author | cinap_lenrek <cinap_lenrek@felloff.net> | 2019-09-22 20:37:33 +0200 |
|---|---|---|
| committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2019-09-22 20:37:33 +0200 |
| commit | a524fd06466b057638d8bf40f8f9f380033320fe (patch) | |
| tree | be917a604a9961a763fc5da29e45a5a66d0b667a | |
| parent | 61ad24312b1f35fbdea73a93f1bde63181a18794 (diff) | |
| parent | d15008fdef26f8d461a4468b74477b224c372a98 (diff) | |
| download | plan9front-a524fd06466b057638d8bf40f8f9f380033320fe.tar.xz | |
merge
| -rw-r--r-- | sys/man/1/2c | 6 | ||||
| -rw-r--r-- | sys/src/ape/cmd/cc.c | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/sys/man/1/2c b/sys/man/1/2c index d6bdeace1..17c7e179e 100644 --- a/sys/man/1/2c +++ b/sys/man/1/2c @@ -1,6 +1,6 @@ .TH 2C 1 .SH NAME -0c, 1c, 2c, 5c, 6c, 8c, kc, qc, vc \- C compilers +0c, 1c, 2c, 5c, 6c, 7c, 8c, kc, qc, vc \- C compilers .SH SYNOPSIS .B 2c [ @@ -41,6 +41,9 @@ little-endian ARM .B "6c amd64 AMD64 and compatibles (e.g., Intel EM64T) .TP +.B "7c arm64 +ARM64 (ARMv8) +.TP .B "8c 386 Intel i386, i486, Pentium, etc. .TP @@ -65,6 +68,7 @@ Let the first letter of the compiler name be .BR 2 , .BR 5 , .BR 6 , +.BR 7 , .BR 8 , .BR k , .BR q , diff --git a/sys/src/ape/cmd/cc.c b/sys/src/ape/cmd/cc.c index 1604fd7ca..24a075571 100644 --- a/sys/src/ape/cmd/cc.c +++ b/sys/src/ape/cmd/cc.c @@ -31,6 +31,7 @@ Objtype objtype[] = { {"sparc", "kc", "kl", "k"}, {"power", "qc", "ql", "q"}, {"mips", "vc", "vl", "v"}, + {"spim", "0c", "0l", "0"}, }; enum { |
