scc

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

commit 0d3b55519d654762c70fad8b61dbaf52caf09601
parent a8e2e90fa44baacd3339cdfcb927e3c24ad89190
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); }