commit bb18949435d6cdc7561bfe83ba159ad405d14953 parent 442e6287627c9e3bfee8b6508e41063c3a555faa Author: Roberto E. Vargas Caballero <k0ga@shike2.com> Date: Sun, 10 Aug 2014 19:38:37 +0200 Add kcc script This is the driver for the full compilation and it only calls cc1 and cc2 now. Diffstat:
A | kcc | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/kcc b/kcc @@ -0,0 +1,6 @@ +#!/bin/sh + +PATH=$PWD/cc1:$PWD/cc2 + +cc1 < $1 | cc2 +