Nikodemus wrote:
...of course, if ASDF had comething like
(:module "ports" :components (:file "sbcl" :when (feature :sbcl)) (:file "ccl" :when (feature :ccl)))
then we'd be pretty close to best of both worlds
One could even flip that to a more lispy (:module "ports" :components (:when (feature :sbcl) (:file "sbcl") ...) (:when (feature :ccl) (:file "ccl")))
Which could even extend to (:when (feature :sbcl) (:module "sbcl-stuff" ...))
- Daniel