The binary is the one I downloaded from cons.org

>From the herald: CMU Common Lisp 18d

The binary's features are:

(:PCL-STRUCTURES :PORTABLE-COMMONLOOPS :PCL :PYTHON :CMU18 :CMU18D :GENCGC
 :CONSERVATIVE-FLOAT-TYPE :RANDOM-MT19937 :HASH-NEW :MP :I486 :X86 :LINUX
 :GLIBC2 :UNIX :COMMON :CMU :NEW-COMPILER :COMMON-LISP :ANSI-CL
 :IEEE-FLOATING-POINT)

I used the unaltered setenv.lisp for linux:

;;; Put code to massage *features* list here...

(in-package :cl-user)

;; Select the target platform and OS here

;; e.g. for Linux you want:
(pushnew :linux *features*)
;; for FreeBSD 4.X you'd want
;;(pushnew :freebsd4 *features*)
;;(pushnew :freebsd *features*)
;;(pushnew :elf *features*)
;; for OpenBSD you'd want
;; (pushnew :openbsd *features*)

;; Things you generally want for all X86 platforms:
(pushnew :gencgc *features*)
(pushnew :i486 *features*)
(pushnew :mp *features*)

;; Specific features that most people want:
(pushnew :hash-new *features*)
(pushnew :random-mt19937 *features*)
(pushnew :conservative-float-type *features*)

;; Version tags

(pushnew :cmu18d *features*)
(pushnew :cmu18 *features*)
(setf *features* (remove :cmu17 *features*))
(setf *features* (remove :cmu18c *features*))

-----Original Message-----
From: Raymond Toy [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 14, 2002 11:57 AM
To: Dave Richards
Cc: '[EMAIL PROTECTED]'
Subject: Re: Re-building CMUCL from CVS source


>>>>> "Dave" == Dave Richards <[EMAIL PROTECTED]> writes:

    Dave> By following the instructions at
    Dave> http://www.pmsf.de/resources/lisp/CMUCL.html I attempted to
re-build CMUCL
    Dave> on x86/Linux.  I build fails and I get the following output.  I
tried both
    Dave> linux and linux_gencgc configurations, but got the same error.
What wisdom
    Dave> am I missing?

What binary version were you using to build from?  What *features* are
you using?  (Look in setenv.lisp.)

I got the same error as you yesterday because I was building a version
with :linkage-table using an old binary that didn't have that.  You
need a cross-compile in this case.

Ray

Reply via email to