On Mon, Nov 3, 2014 at 11:31 PM, Robert P. Goldman <rpgold...@sift.info>
wrote:

> Jean-Claude Beaudoin wrote:
> >
> > On Mon, Nov 3, 2014 at 4:16 PM, Robert P. Goldman <rpgold...@sift.info
> > <mailto:rpgold...@sift.info>> wrote:
> >
> >
> >     This morning I pulled an update from the mkcl git repo, rebuilt on my
> >     Linux Mint machine, and retested with the latest ASDF.  All the tests
> >     that completed seemed to complete successfully, but
> test-program.script
> >     hung, instead of completing.
> >


The bug in MKCL that resulted in test-program.script hanging is now fixed
and committed
to MKCL's git repository master head.

The fix further uncovered that a change in hello-world-example.asd is now
needed
for it to work again, please see here-by attached patch file.

With this I now get for "make t l=mkcl":

-#---------------------------------------
Using /home/jean-claude/tmp/ASDF/mkcl/src/bin/mkcl
Ran 56 tests:
  56 passing and 0 failing
all tests apparently successful
-#---------------------------------------

Regards,

JCB
From dff0db2cf4cf47b87ad30f1490e03554db6b0be2 Mon Sep 17 00:00:00 2001
From: Jean-Claude Beaudoin <jean.claude.beaud...@gmail.com>
Date: Wed, 19 Nov 2014 03:57:00 -0500
Subject: [PATCH] On mkcl, no need to manually load COMPILER anymore,
 dependency on UIOP provides it properly now.

---
 test/hello-world-example.asd |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/hello-world-example.asd b/test/hello-world-example.asd
index 446fa9b..4efafb1 100644
--- a/test/hello-world-example.asd
+++ b/test/hello-world-example.asd
@@ -6,7 +6,7 @@
      :depends-on (:uiop)
      :components ((:file "hello"))
      #+mkcl
-     ,@`(:prefix-lisp-object-files (,(namestring (truename (translate-logical-pathname #P"SYS:cmp.a"))))
+     ,@`(;;:prefix-lisp-object-files (,(namestring (truename (translate-logical-pathname #P"SYS:cmp.a"))))
          :extra-build-args ,(or #-windows '(:use-mkcl-shared-libraries nil))
          :class program-system
          :epilogue-code (progn
-- 
1.7.9.5

_______________________________________________
Asdf-devel mailing list
Asdf-devel@common-lisp.net
http://mailman.common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel

Reply via email to