- Sep 09, 2002
-
-
Daniel Barlow authored
-
- Sep 06, 2002
-
-
Kevin Rosenberg authored
-
- Aug 30, 2002
-
-
Kevin Rosenberg authored
-
Kevin Rosenberg authored
-
- Aug 29, 2002
-
-
Kevin Rosenberg authored
-
- Aug 28, 2002
-
-
Daniel Barlow authored
-
Daniel Barlow authored
-
Daniel Barlow authored
-
Daniel Barlow authored
-
Daniel Barlow authored
-
Kevin Rosenberg authored
-
Daniel Barlow authored
-
Daniel Barlow authored
similar which corresponds to the CVS revision of asdf.lisp - compile-file errors The default behaviour for coping with compile-file errors has changed: (defvar *compile-file-warnings-behaviour* :warn) -(defvar *compile-file-failure-behaviour* :error) +(defvar *compile-file-failure-behaviour* #+sbcl :error #-sbcl :warn) Most lisp implementations (all that I know of except for sbcl) stop and enter the debugger for catastrophic errors in file compilation. SBCL otoh has a much finer warning/style-warning distinction and should not ever return failure-p unless for a catastrophic error Fix printing of system-definition-error in CMUCL (thanks to Bob Rogers) Moved a lot of messing around with 'last-compiled and 'last-loaded properties into :before and :after methods on source-file so that "don't reload if already loaded" works for new source file types that users create There is a new operation load-source-op based on Kevin Rosenberg's implementation of same. I'm not altogether sure yet how this should interact with 'last-compiled and 'last-loaded: suggestions welcomed OPERATE now does the operation inside a WITH-COMPILATION-UNIT form, to reduce noise from the compiler about forward definitions. Courtesy of Bob Rogers
-
Daniel Barlow authored
-
- Aug 27, 2002
-
-
Kevin Rosenberg authored
-
- Aug 26, 2002
-
-
Kevin Rosenberg authored
-
Kevin Rosenberg authored
-
Kevin Rosenberg authored
-
- Aug 23, 2002
-
-
Kevin Rosenberg authored
-
- Aug 22, 2002
-
-
Kevin Rosenberg authored
-
- Aug 18, 2002
-
-
Kevin Rosenberg authored
-
Kevin Rosenberg authored
-
Kevin Rosenberg authored
-
- Jul 04, 2002
-
- Jun 19, 2002
-
-
Daniel Barlow authored
-
Daniel Barlow authored
("asdf:defsystem class bug")
-
- Jun 08, 2002
-
-
Rahul Jain authored
wild-pathname-based modules for asdf. (:wild-module "name" :pathname "foo/*.bar" :component-class 'bar-file), e.g.
-
Daniel Barlow authored
Merge compiler warning cleanups from Miles Egan in mail message-id <20020607203531.GE9363@pixar.com> Add elementary CVS instructions to README file
-
- May 20, 2002
-
-
Daniel Barlow authored
avoid reloading files that have already been loaded into the image. based on a patch by Brian Seitz
-
Daniel Barlow authored
before the dependency is looked for This patch does the coercion at lookup time even though it would be better done earlier, because the in-order-to syntax is insanely complicated. In a future version we may lose and/or dependencies; it's not as if anyone understands them anyway
-
- May 03, 2002
-
-
Daniel Barlow authored
-
Daniel Barlow authored
-
Daniel Barlow authored
-
- May 02, 2002
-
-
Daniel Barlow authored
-
- Apr 30, 2002
-
-
Daniel Barlow authored
Several changes * If some component of *central-registry* is a function or a symbol for which fboundp returns true, it will be funcalled with the system name string as an argument, and should return a directory in which to look for the system definition. This allows much more flexibility in the location of .asd files * New component type 'system' is functionally identical to module, but has attributes for author name, licence, description etc, which can be used by programs that make platform packages * Much shuffling of parts of the file so that it compiles without any warnings about forward declarations * The behaviour when compile-file returns non-NIL in its secondary values (failure-p and warnings-p) can now be customized: new compile-op initargs :on-warnings and :on-failure take values (or :warn :error :ignore). If unspecified, these default to *compile-file-{failure,warnings}-behaviour* * A new 'properties' attribute to component which can be used to communicate extra optional information between system authors and platform package creation programs
-
- Mar 11, 2002
-
-
Christophe Rhodes authored
-
Christophe Rhodes authored
-
Christophe Rhodes authored
-
Christophe Rhodes authored
-
- Mar 06, 2002
-
-
Daniel Barlow authored
-