Delivery of Universal Binary?
This is my first foray into using Delivery. I'm using LispWorks 5.0.1 on an IntelMac, and I've cribbed heavily from the example delivery script from the documentation and the macos one that comes with the delivery examples. I'm trying to deliver a Universal Binary My first delivery attempt works fine on IntelMacs, but on PowerPC I get one of two messages. If I don't use the :template-bundle keyword I get this message: "You cannot open the application "SG3" because it is not supported on this system." And if I do, I get this one: "You cannot open the application "SG3" because it may be damaged or incomplete." My delivery script is below. Thanks, Chris ;; ;; SG DELIVERY ;; (load-all-patches) (compile-file-if-needed "~/sg3_lsp_rework/sitegrinder_project" :load T) #+:cocoa (compile-file-if-needed (sys:example-file "configuration/macos-application-bundle") :load t) (deliver #'sg::start-lw-sg #+:cocoa (write-macos-application-bundle "/Applications/SG3.app" :document-types nil :template-bundle "/Applications/LispWorks 5.0/Library/lib/5-0-0-0/examples/delivery/macos/templates/FullApplication.app/") #-:cocoa "sitegrinder_project" ;; 0 :interface :capi :multiprocessing T) (quit)