scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit bd6490db96cacfbb7a1eb13a54a00e2875fc4d24
parent 674bc69c366f3f66a75e2635293420f6be910146
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sun, 28 Jun 2020 21:27:46 +0200

cc1: Fix usage() message

The option -o was removed long time ago and the new -a option
was not added.

Diffstat:
Msrc/cmd/cc/cc1/main.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cmd/cc/cc1/main.c b/src/cmd/cc/cc1/main.c @@ -35,7 +35,7 @@ static void usage(void) { fputs("usage: cc1 [-Ewd] [-D def[=val]]... [-U def]... " - "[-I dir]... [-o output] [input]\n", stderr); + "[-I dir]... [-a architecture] [input]\n", stderr); exit(1); }