scc

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

commit 07765e654c10f17169bd66e0e5ca3e6205a449b7
parent 0654230abc8c9cef6f0603ec456ef63471599e86
Author: Roberto E. Vargas Caballero <k0ga@shike2.net>
Date:   Mon,  4 May 2026 18:36:23 +0200

scc: Ignore -pipe option

This is used by default in OpenBSD.

Diffstat:
Msrc/cmd/scc-cc/posix/cc.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/cmd/scc-cc/posix/cc.c b/src/cmd/scc-cc/posix/cc.c @@ -616,6 +616,7 @@ main(int argc, char *argv[]) !strcmp(arg, "-dynamic") || !strcmp(arg, "-pedantic") || !strcmp(arg, "-ansi") || + !strcmp(arg, "-pipe") || !strncmp(arg, "-std=", 5)) { continue; }