scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit cf39f67abcb236e6b77db6b27531db72deca51c2
parent 07fd1c66c64013984489b697dc6441cc4d505cc8
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 29 Nov 2016 14:15:19 +0100

Avoid whitespace in ARCH = qbe

The comment may generate a space in the assignation to qbe

Diffstat:
Mconfig.mk | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/config.mk b/config.mk @@ -1,9 +1,10 @@ # scc version VERSION = 0.1 -# Customize below to fit your system +## Customize below to fit your system ARCHS = z80 i386-sysv amd64-sysv qbe -ARCH = qbe # default architecure used in nested makefiles +# default architecure used in nested makefiles +ARCH = qbe DRIVER = posix # Remove inc/sizes.h if STD is changed