scc

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

commit 686f0cf621e606b63dbae585d229414dfacdca33
parent da75e063361f16c5fa9ec6701c2de1f004ef90fa
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri, 19 Jan 2024 20:20:46 +0100

libc: Don't use CPPFLAGS with the assembler

CPPFLAGS contains values that may be not accepted
by the assembler and they are not required at all.

Diffstat:
Msrc/libc/rules.mk | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libc/rules.mk b/src/libc/rules.mk @@ -31,4 +31,4 @@ clean-libc: FORCE $(CC) $(PROJ_CPPFLAGS) $(PROJ_CFLAGS) -o $@ -c $< .s.$O: - $(AS) $(PROJ_CPPFLAGS) $(PROJ_ASFLAGS) $< -o $@ + $(AS) $(PROJ_ASFLAGS) $< -o $@