diff options
-rw-r--r-- | src/ChangeLog | 5 | ||||
-rw-r--r-- | src/lisp/Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index fbe3d25a..ffbceec5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,10 @@ 2010-11-27 Gabriel Dos Reis <gdr@cs.tamu.edu> + * lisp/Makefile.in (GCL_LTCC): Specify the tag. + (GCL_LTLD): Likewise. + +2010-11-27 Gabriel Dos Reis <gdr@cs.tamu.edu> + * Makefile.am: Automake Makefile.in. * Makefile.in: Regenerate. diff --git a/src/lisp/Makefile.in b/src/lisp/Makefile.in index 01a68f27..b2b16486 100644 --- a/src/lisp/Makefile.in +++ b/src/lisp/Makefile.in @@ -46,8 +46,8 @@ build_libdir = ./$(top_builddir)/src/lib ## to convince to properly resolve path names to executables. ## Consequently we temporarily give up here, e.g., we don't ## instruct GCL to use Libtool on Windows. -GCL_LTCC = $(if $(findstring mingw, $(target)),"","$(LIBTOOL) --mode=compile ") -GCL_LTLD = $(if $(findstring mingw, $(target)),"","$(LIBTOOL) --mode=link ") +GCL_LTCC = $(if $(findstring mingw, $(target)),"","$(LIBTOOL) --tag=CC --mode=compile ") +GCL_LTLD = $(if $(findstring mingw, $(target)),"","$(LIBTOOL) --tag=CC --mode=link ") ## Again, ideally, we would like GCL to link with the compiled Lisp ## code from core.lisp. However, the general interface compiler::link |