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:
commit
2e4fb1e665
48 changed files with 20 additions and 20 deletions
|
@ -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
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <sys/mman.h>
|
||||
|
||||
#include <jit.h>
|
||||
#include <lightening.h>
|
||||
|
||||
#define ASSERT(x) \
|
||||
do { \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue