diff options
author | rodri <rgl@antares-labs.eu> | 2023-04-22 20:45:41 +0000 |
---|---|---|
committer | rodri <rgl@antares-labs.eu> | 2023-04-22 20:45:41 +0000 |
commit | e93625550dc0beb8b455246e20690ba90d2bbd04 (patch) | |
tree | e967beef01549fd3a0f7b9b5bbafaf36700512a3 /sys | |
parent | de727cdb3b617b44ec223261044b9046350e0e61 (diff) |
2c(1), 2l(1), tl: add thumb to the list. fix thechar: '5' → 't'
Diffstat (limited to 'sys')
-rw-r--r-- | sys/man/1/2c | 6 | ||||
-rw-r--r-- | sys/man/1/2l | 2 | ||||
-rw-r--r-- | sys/src/cmd/tl/obj.c | 4 |
3 files changed, 8 insertions, 4 deletions
diff --git a/sys/man/1/2c b/sys/man/1/2c index 17c7e179e..65beb5860 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, 7c, 8c, kc, qc, vc \- C compilers +0c, 1c, 2c, 5c, 6c, 7c, 8c, kc, qc, tc, vc \- C compilers .SH SYNOPSIS .B 2c [ @@ -53,6 +53,9 @@ Sun SPARC .B "qc power Power PC .TP +.B "tc thumb +ARM Thumb +.TP .B "vc mips big-endian MIPS 3000 family .PP @@ -72,6 +75,7 @@ Let the first letter of the compiler name be .BR 8 , .BR k , .BR q , +.BR t , or .BR v . The output object files end in diff --git a/sys/man/1/2l b/sys/man/1/2l index c86bf0370..c04971f05 100644 --- a/sys/man/1/2l +++ b/sys/man/1/2l @@ -1,6 +1,6 @@ .TH 2L 1 .SH NAME -0l, 1l, 2l, 5l, 6l, 8l, kl, ql, vl \- loaders +0l, 1l, 2l, 5l, 6l, 8l, kl, ql, tl, vl \- loaders .SH SYNOPSIS .B 2l [ diff --git a/sys/src/cmd/tl/obj.c b/sys/src/cmd/tl/obj.c index 3c83c4b8b..43d5e704c 100644 --- a/sys/src/cmd/tl/obj.c +++ b/sys/src/cmd/tl/obj.c @@ -8,7 +8,7 @@ char *noname = "<none>"; char symname[] = SYMDEF; -char thechar = '5'; +char thechar = 't'; char *thestring = "arm"; /* @@ -111,7 +111,7 @@ main(int argc, char *argv[]) USED(argc); if(*argv == 0) { - diag("usage: 5l [-options] objects"); + diag("usage: tl [-options] objects"); errorexit(); } if(!debug['9'] && !debug['U'] && !debug['B']) |