From 75405a313551c88202a1f89a3e127ffe4c3dcdcf Mon Sep 17 00:00:00 2001 From: retropikzel Date: Sat, 22 Mar 2025 18:52:48 +0200 Subject: [PATCH] pffi-define-library works on Guile and Kawa now --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ed4516d..6d0bd47 100644 --- a/Makefile +++ b/Makefile @@ -49,11 +49,11 @@ libtest.a: libtest.o src/libtest.c ar rcs libtest.a libtest.o test-interpreter-compliance: tests/libtest.so - SCHEME=${SCHEME} script-r7rs -I . tests/compliance.scm + SCHEME=${SCHEME} script-r7rs -I . -I .. tests/compliance.scm test-interpreter-compliance-docker: docker build -f dockerfiles/test . --build-arg SCHEME=${SCHEME} --tag=pffi-${SCHEME} - docker run -v ${PWD}:/workdir pffi-${SCHEME} bash -c "cd /workdir && SCHEME=${SCHEME} script-r7rs -I . tests/compliance.scm" + docker run -v ${PWD}:/workdir pffi-${SCHEME} bash -c "cd /workdir && SCHEME=${SCHEME} script-r7rs -I . -I .. tests/compliance.scm" test-compile-library: tests/libtest.so libtest.a libtest.o SCHEME=${SCHEME} compile-r7rs-library retropikzel/pffi.sld