Parse raw slot data when printing structures in LDB
[sbcl.git] / contrib / sb-rotate-byte / sb-rotate-byte.asd
blobc75814cac32e9b6d8551abd5601698894ef37861
1 ;;; -*-  Lisp -*-
3 (defsystem sb-rotate-byte
4   :version "0.1"
5   #+sb-building-contrib :pathname
6   #+sb-building-contrib #p"SYS:CONTRIB;SB-ROTATE-BYTE;"
7   :components
8   ((:file "package")
9    (:file "compiler" :depends-on ("package"))
10    (:module "vm"
11     :depends-on ("compiler")
12     :pathname ""
13     :components
14     ((:file "arm-vm" :if-feature :arm)
15      (:file "x86-vm" :if-feature :x86)
16      (:file "x86-64-vm" :if-feature :x86-64)
17      (:file "ppc-vm" :if-feature :ppc)))
18    (:file "rotate-byte" :depends-on ("compiler")))
19   :perform (load-op :after (o c) (provide 'sb-rotate-byte))
20   :perform (test-op (o c) (test-system 'sb-rotate-byte/tests)))
23 (defsystem sb-rotate-byte/tests
24   #+sb-building-contrib :pathname
25   #+sb-building-contrib #p"SYS:CONTRIB;SB-ROTATE-BYTE;"
26   :depends-on (sb-rotate-byte)
27   :components ((:file "rotate-byte-tests")))