X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-rotate-byte%2Fsb-rotate-byte.asd;h=908392d7f103493db0feca20873038f786de0eb0;hb=4255b37e50876702d2563f3418a44a3f5bf8a2e8;hp=40ae7dde82827973b213e19d44a24b020d17ccdb;hpb=bf25f936158ea89a142d86a0f0216a8bed029dc5;p=sbcl.git diff --git a/contrib/sb-rotate-byte/sb-rotate-byte.asd b/contrib/sb-rotate-byte/sb-rotate-byte.asd index 40ae7dd..908392d 100644 --- a/contrib/sb-rotate-byte/sb-rotate-byte.asd +++ b/contrib/sb-rotate-byte/sb-rotate-byte.asd @@ -7,7 +7,7 @@ (defsystem sb-rotate-byte :version "0.1" #+sb-building-contrib :pathname - #+sb-building-contrib "SYS:CONTRIB;SB-ROTATE-BYTE;" + #+sb-building-contrib #p"SYS:CONTRIB;SB-ROTATE-BYTE;" :components ((:file "package") (:file "compiler" :depends-on ("package")) @@ -16,10 +16,12 @@ :components ((:file "x86-vm" :in-order-to ((compile-op (feature :x86)))) + (:file "x86-64-vm" + :in-order-to ((compile-op (feature :x86-64)))) (:file "ppc-vm" :in-order-to ((compile-op (feature :ppc))))) :pathname - #+sb-building-contrib "SYS:CONTRIB;SB-ROTATE-BYTE;" + #+sb-building-contrib #p"SYS:CONTRIB;SB-ROTATE-BYTE;" #-sb-building-contrib #.(make-pathname :directory '(:relative)) :if-component-dep-fails :ignore) (:file "rotate-byte" :depends-on ("compiler"))))