Skip to content

Commit

Permalink
Merge pull request #5 from genworks/master
Browse files Browse the repository at this point in the history
protect for asdf symbols not being there.
  • Loading branch information
gwkkwg committed Dec 19, 2019
2 parents 6eaa9e3 + c2830e1 commit ef04337
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions dev/package.lisp
Expand Up @@ -23,12 +23,24 @@
#:class-precedence-list
#:class-finalized-p
#:finalize-inheritance)

#+asdf

;;
;; FLAG -- DJC
;;
;; I'm not sure how to achieve the following imports and re-exports
;; when we might be using ASDF's compile-bundle facilities to build
;; metatilities into a loadable fasl (which should itself be free of
;; asdf and loadable without asdf having been loaded in the image)
;;
;; These don't seem to be hard requirements of metatilities, so
;; commenting them out for now - and other ideas welcome.
;;

#+nil ;; #+asdf
(:import-from #:asdf
#:load-op #:compile-op #:test-op
#:operate #:oos)
#+asdf
#+nil ;; #+asdf
(:export
#:load-op #:compile-op #:test-op
#:operate #:oos)
Expand Down

0 comments on commit ef04337

Please sign in to comment.