ASDF: another system definition facility ======================================== If you cloned our git repository, bootstrap a copy of build/asdf.lisp with: make To use ASDF, read our manual: http://common-lisp.net/project/asdf/asdf.html The first few sections, Loading ASDF, Configuring ASDF and Using ASDF, will get you started as a simple user. If you want to define your own systems, further read the section Defining systems with defsystem. ASDF 3 now includes an extensive runtime support library, asdf-driver. Its documentation unhappily mainly lies in the source code and docstrings. More information and additional links can be found on ASDF's home page at: http://common-lisp.net/project/asdf/ Last updated Thursday, January 31st, 2013.
"uiop/utility.lisp" did not exist on "1e4bafdbd4200d3a19722699d6a332316b082b2b"
Forked from
asdf / asdf
2684 commits behind the upstream repository.
Francois-Rene Rideau
authored
1- To make life easier on Xach, stop requiring asdf.lisp to be loaded as source before it's compiled. Instead, wrap each and every single form in an eval-when, most of the time via the with-upgradability macro that also transforms defun into defun* and defgeneric into defgeneric*. Causes massive reindentation :-( 2- Have a proper :version for fallback systems. Will make systems that check the version happier. 3- protect a condition with #+sb-eval. Fixes lp#1116408. 4- Protect warnings-file methods with dynamic when *warnings-file-type* rather than static #+.