I've just checked out sources for 8.10 and am going through the build
process using sbcl 0.8.9. It goes through a lot of "stuff" (technical
term) and them prints out:
gnumake: `depend' is up to date.
gcc3 -Dppc -g -Wall -O3 -no-cpp-precomp -I. -c -o alloc.o alloc.c
gcc3 -Dppc -g -Wall -O3 -no-cpp-precomp -I. -c -o backtrace.o
backtrace.c
backtrace.c: In function `previous_info':
backtrace.c:159: warning: unsigned int format, long unsigned int arg
(arg 2)
backtrace.c: In function `backtrace':
backtrace.c:211: warning: unsigned int format, long unsigned int arg
(arg 2)
backtrace.c:216: warning: unsigned int format, long unsigned int arg
(arg 2)
backtrace.c:259: warning: unsigned int format, long unsigned int arg
(arg 2)
gcc3 -Dppc -g -Wall -O3 -no-cpp-precomp -I. -c -o breakpoint.o
breakpoint.c
gcc3 -Dppc -g -Wall -O3 -no-cpp-precomp -I. -c -o coreparse.o
coreparse.c
coreparse.c: In function `load_core_file':
coreparse.c:187: warning: implicit declaration of function `strlen'
gcc3 -Dppc -g -Wall -O3 -no-cpp-precomp -I. -c -o dynbind.o dynbind.c
dynbind.c: In function `bind_variable':
dynbind.c:43: `FREE_TLS_INDEX' undeclared (first use in this function)
dynbind.c:43: (Each undeclared identifier is reported only once
dynbind.c:43: for each function it appears in.)
gnumake: *** [dynbind.o] Error 1
I'm afraid I don't know what to do at this point. Any help is
appreciated. The only change I've made is to add a
customize-target-features.lisp consisting of:
(lambda (list)
(flet ((enable (x) (pushnew x list))
(disable (x) (setf list (remove x list))))
#+nil (enable :sb-show)
#+nil (enable :sb-after-xc-core)
#+nil (disable :sb-doc)
(enable :sb-thread)
list))
Any help would be appreciated.
--
Gary Warren King, Lab Manager
EKSL East, University of Massachusetts * 413 577 0176
Everyone is entitled to all the rights and freedoms set forth in this
Declaration, without distinction of any kind, such as race, colour,
sex, language, religion, political or other opinion, national or social
origin, property, birth or other status. Furthermore, no distinction
shall be made on the basis of the political, jurisdictional or
international status of the country or territory to which a person
belongs, whether it be independent, trust, non-self-governing or under
any other limitation of sovereignty.
-- Universal Declaration of Human Rights, Article 2
|