This commit is contained in:
cinap_lenrek 2019-09-22 20:37:33 +02:00
commit a524fd0646
2 changed files with 6 additions and 1 deletions

View file

@ -1,6 +1,6 @@
.TH 2C 1 .TH 2C 1
.SH NAME .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 .SH SYNOPSIS
.B 2c .B 2c
[ [
@ -41,6 +41,9 @@ little-endian ARM
.B "6c amd64 .B "6c amd64
AMD64 and compatibles (e.g., Intel EM64T) AMD64 and compatibles (e.g., Intel EM64T)
.TP .TP
.B "7c arm64
ARM64 (ARMv8)
.TP
.B "8c 386 .B "8c 386
Intel i386, i486, Pentium, etc. Intel i386, i486, Pentium, etc.
.TP .TP
@ -65,6 +68,7 @@ Let the first letter of the compiler name be
.BR 2 , .BR 2 ,
.BR 5 , .BR 5 ,
.BR 6 , .BR 6 ,
.BR 7 ,
.BR 8 , .BR 8 ,
.BR k , .BR k ,
.BR q , .BR q ,

View file

@ -31,6 +31,7 @@ Objtype objtype[] = {
{"sparc", "kc", "kl", "k"}, {"sparc", "kc", "kl", "k"},
{"power", "qc", "ql", "q"}, {"power", "qc", "ql", "q"},
{"mips", "vc", "vl", "v"}, {"mips", "vc", "vl", "v"},
{"spim", "0c", "0l", "0"},
}; };
enum { enum {