scc

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

commit 52fdd23e2d3b99749320b94c6a89cc181cfb8d5e
parent 082a77eb0760b67d40d99bf42d6b57f83143ca37
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