4e50dec11d
[INTERPRETER] * OPT: String routines are now compiled with -O3. * NEW: Don't display JIT debugging message unless GB_JIT_DEBUG is set to something different from zero. * NEW: String whose length is greater than 256 now have a growth step of 256 bytes instead of 16. [GB.JIT] * NEW: Do many global optimizations as now the class metadata is fully available. * NEW: Support for optional argument. Still buggy at the moment.
16 lines
331 B
Makefile
16 lines
331 B
Makefile
COMPONENT = gb.jit
|
|
include $(top_srcdir)/component.am
|
|
|
|
gblib_LTLIBRARIES = gb.jit.la
|
|
|
|
gb_jit_la_LIBADD = @C_LIB@
|
|
gb_jit_la_LDFLAGS = -module @LD_FLAGS@
|
|
gb_jit_la_CFLAGS = -I$(top_srcdir)/share -I$(top_srcdir)/gbx $(AM_CFLAGS)
|
|
|
|
gb_jit_la_SOURCES = \
|
|
main.h main.c \
|
|
gb_str.h gb_str.c \
|
|
gbc_reserved.c \
|
|
jit.h jit.c jit_body.c
|
|
|
|
|