shithub: scc

Download patch

ref: bb18949435d6cdc7561bfe83ba159ad405d14953
parent: 442e6287627c9e3bfee8b6508e41063c3a555faa
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Sun Aug 10 15:38:37 EDT 2014

Add kcc script

This is the driver for the full compilation and it only calls cc1
and cc2 now.

--- /dev/null
+++ b/kcc
@@ -1,0 +1,6 @@
+#!/bin/sh
+
+PATH=$PWD/cc1:$PWD/cc2
+
+cc1 < $1 | cc2
+
--