mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-14 01:30:19 +02:00
enable compilation of more modules
* ice-9/Makefile.am: Compile most modules. There are still a couple that fail to compile.
This commit is contained in:
parent
1e6ebf54db
commit
8ab3c80f8b
1 changed files with 14 additions and 7 deletions
|
@ -31,21 +31,28 @@ modpath = ice-9
|
||||||
# of the C stack than the interpreter would have; so avoid that by
|
# of the C stack than the interpreter would have; so avoid that by
|
||||||
# putting these core modules first.
|
# putting these core modules first.
|
||||||
SOURCES = psyntax-pp.scm boot-9.scm \
|
SOURCES = psyntax-pp.scm boot-9.scm \
|
||||||
and-let-star.scm
|
and-let-star.scm calling.scm common-list.scm \
|
||||||
NOCOMP_SOURCES = \
|
|
||||||
calling.scm common-list.scm \
|
|
||||||
debug.scm debugger.scm documentation.scm emacs.scm expect.scm \
|
debug.scm debugger.scm documentation.scm emacs.scm expect.scm \
|
||||||
format.scm getopt-long.scm hcons.scm i18n.scm \
|
format.scm getopt-long.scm hcons.scm i18n.scm \
|
||||||
lineio.scm ls.scm mapping.scm \
|
lineio.scm ls.scm mapping.scm \
|
||||||
match.scm networking.scm null.scm optargs.scm poe.scm popen.scm \
|
networking.scm null.scm optargs.scm poe.scm popen.scm \
|
||||||
posix.scm psyntax.ss q.scm r4rs.scm r5rs.scm \
|
posix.scm psyntax.ss q.scm r4rs.scm r5rs.scm \
|
||||||
rdelim.scm receive.scm regex.scm runq.scm rw.scm \
|
rdelim.scm receive.scm regex.scm runq.scm rw.scm \
|
||||||
safe-r5rs.scm safe.scm session.scm slib.scm stack-catch.scm \
|
safe-r5rs.scm safe.scm session.scm slib.scm stack-catch.scm \
|
||||||
streams.scm string-fun.scm syncase.scm threads.scm \
|
streams.scm string-fun.scm syncase.scm threads.scm \
|
||||||
buffered-input.scm time.scm history.scm channel.scm \
|
buffered-input.scm time.scm history.scm channel.scm \
|
||||||
pretty-print.scm ftw.scm gap-buffer.scm occam-channel.scm \
|
pretty-print.scm ftw.scm gap-buffer.scm \
|
||||||
weak-vector.scm deprecated.scm list.scm serialize.scm \
|
weak-vector.scm deprecated.scm list.scm serialize.scm \
|
||||||
gds-client.scm gds-server.scm
|
gds-server.scm
|
||||||
|
|
||||||
|
# match.scm compiles, but then using it (via
|
||||||
|
# snarf-check-and-output-texi) fails. need to figure out what the
|
||||||
|
# problem is.
|
||||||
|
#
|
||||||
|
# occam-channel and gds-client use goops, which is not yet vm-compatible
|
||||||
|
# (it does some compilation-like optimizations for the interpreter), so
|
||||||
|
# punt on them for the time being.
|
||||||
|
NOCOMP_SOURCES = match.scm occam-channel.scm gds-client.scm
|
||||||
|
|
||||||
include $(top_srcdir)/guilec.mk
|
include $(top_srcdir)/guilec.mk
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue