Re: Install problems

Harald Hanche-Olsen <[email protected]> Tue, 28 May 2002 19:13:17 +0200
Newsgroups gmane.lisp.uffi.general
Message-ID <[email protected]>
+ "Rolf Wester" <[email protected]>:

| ;;;Evaluating mk:load-system
| ; Loading #p"/home/wester/usr/local/cmucl18d/lib/cmucl/lib/subsystems/uffi/uffi-0.4.5/uffi.system".
| ;; Loading #p"/home/wester/usr/local/cmucl18d/lib/cmucl/lib/subsystems/uffi/uffi-0.4.5/set-logical.cl".
| ;    - Binary file /home/wester/usr/local/cmucl18d/lib/cmucl/lib/subsystems/uffi/uffi-
| 0.4.5/src/.bin/cmucl/package.x86f is old or does not exist. 
| 
| Error in format: Unknown format directive.
|   ~A- Binary file ~A is old or does not exist. ~
|                      ~&~A  Compile (and load) source file ~A instead? 
|                                                 ^

Hmm....  You get an error in FORMAT, inside
mk:compile-and-load-source-if-no-binary.  It looks like format does
not recognize the tilde newline directive!?  I'll bet that your
defsystem.lisp has its lines ending with CRLF.  Get rid of the CR-s,
perhaps by piping the file through tr -d '\015' and then recompiling
and reloading defsystem.

Then it should work.  Everything else that happens in your session
looks all right.  Answer yes to the question.  You will get two more
question, then the rest will run automatically if you gave the right
answers.  8-)  In the end, uffi will have been compiled, and you will
not get all this output again.

- Harald