Greetings!

Donald Winiecki <dwinie...@boisestate.edu> writes:

> Camm,
>
> I verified the source of CVS files to gcl268pre but make still fails when 
> building the ANSI variant.  Here is
> a link to the make log.
>
> https://sites.google.com/a/boisestate.edu/gcl-win32/home/build-logs/xp-ansi-m.log?attredirects=0&d=1
>

OK, this report is more what I expected.  To proceed further, I need
to guide you through some remote debugging steps.

make clean
./configure --enable-debug --enable-ansi
make
cd pcl

echo '(load "sys-package.lisp")' '(setq *features* (delete (quote :kcl) 
*features*))' '(load "defsys.lisp")(push (quote :kcl) *features*)' '(setq 
pcl::*default-pathname-extensions* (cons "lisp" "o"))' '(setq 
pcl::*pathname-extensions* (cons "lisp" "o"))' '(load "sys-proclaim.lisp")' 
'(setq compiler::*default-h-file* t)' '(setq compiler::*default-c-file* t)' 
'(setq compiler::*default-data-file* t)' '(setq compiler::*default-system-p* 
t)' '(setq compiler::*keep-gaz* t compiler::*tmp-dir* "")' '(pcl::compile-pcl)' 
>foo

gdb ../unixport/saved_gcl.exe
(gdb) b call_init
(gdb) r
> (load "foo")

Then at the first break, please do

(gdb) display/x memory->cfd.cfd_start

and keep a list of which .o file is loaded at which start address.

Then

(gdb) c

to continue, and keep pressing 'c' until the error occurs.  gdb will
break and give you a fault address, please note this.  Then

(gdb) bt

to get a backtrace.

Please then leave this window open, send me the list of addresses, the
fault address, and the backtrace, and I can guide you further from
there. 

Thanks again so much!



> _don
>
> _______________________________________________
> Gcl-devel mailing list
> Gcl-devel@gnu.org
> http://lists.gnu.org/mailman/listinfo/gcl-devel

-- 
Camm Maguire                                        c...@maguirefamily.org
==========================================================================
"The earth is but one country, and mankind its citizens."  --  Baha'u'llah

_______________________________________________
Gcl-devel mailing list
Gcl-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/gcl-devel

Reply via email to