1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-03 10:40:21 +02:00

Merge in changes from upstream lightening

This commit is contained in:
Andy Wingo 2019-04-03 13:59:33 +02:00
commit 2e4fb1e665
48 changed files with 20 additions and 20 deletions

View file

@ -13,12 +13,12 @@ check: all
done
@echo "Success."
jit.o: ../jit.h ../jit/*.c
$(CC) $(CFLAGS) $(CPPFLAGS) -I.. -o jit.o -c ../jit/jit.c
lightening.o: ../lightening.h ../lightening/*.c
$(CC) $(CFLAGS) $(CPPFLAGS) -I.. -o lightening.o -c ../lightening/lightening.c
test-%: %.c jit.o test.h
$(CC) $(CFLAGS) $(CPPFLAGS) -I.. -o $@ jit.o $<
test-%: %.c lightening.o test.h
$(CC) $(CFLAGS) $(CPPFLAGS) -I.. -o $@ lightening.o $<
clean:
rm -f $(addprefix test-,$(TESTS))
rm -f jit.o
rm -f lightening.o

View file

@ -2,7 +2,7 @@
#include <stdlib.h>
#include <sys/mman.h>
#include <jit.h>
#include <lightening.h>
#define ASSERT(x) \
do { \