scc

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

commit 91893c5a55f3882dad1d8b7c892da204d10cfa91
parent 81678b9576d8f3922b1b8df5e1b523f04bc6c783
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri,  1 Oct 2021 17:47:52 +0200

tests/libc: Execute tests only for amd64

In order to execute the tests for 386 we need a cross
compiler. At this moment we don't want to impose the
dependency of having a set of cross compilers installed.

Diffstat:
Mtests/libc/execute/Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/libc/execute/Makefile b/tests/libc/execute/Makefile @@ -7,7 +7,7 @@ CC = SCCPREFIX=$(ROOT) ./cc.sh .c: $(CC) $(CFLAGS) -o $@ $< -all: tests-i386 tests-amd64 +all: tests-amd64 tests-i386: @SCCPREFIX=$(ROOT) CFLAGS='-a i386' ./chktest.sh libc-tests.lst