ASDF and :force t

Discussion of Common Lisp
Post Reply
sinnatagg
Posts: 29
Joined: Tue Apr 21, 2009 3:04 am

ASDF and :force t

Post by sinnatagg » Wed Sep 21, 2011 2:42 am

Ayup we generally do "unit" testing and delivery builds in fresh images to avoid old macro definitions and other stale fasl problems.

Here we have to use (asdf:operate 'asdf:load-op :blabla :force t) to force recompilation of all the lisp files in our project. But this recompiles all our dependencies too, which take quite a bit of time.

Is it possible to selectively recompile just our own asdf systems instead?


-a

Post Reply