Greetings! liste_fran...@gmx.de writes:
> Dear Camm, > > but the errors remain: > (1) -> draw(x,x=0..1) > 1) -> > >> System error: > The assertion tp&~tp on line 180 of sfaslelf.c in function relocate failed > > (1) -> > OK, I misread the earlier report and thought you simply got no output here. This error is a relocation error in gcl. If I recall your system is amd64. There have been some new reloc supports added in gcl for this platform since axiom was built: --- elf64_i386_reloc.h 5 Aug 2010 18:01:30 -0000 1.1.2.1 +++ elf64_i386_reloc.h 27 Apr 2012 15:41:52 -0000 1.1.4.2 @@ -1,9 +1,12 @@ case R_X86_64_32: add_val(where,MASK(32),s+a); break; + case R_X86_64_32S: + add_vals(where,MASK(32),s+a); + break; case R_X86_64_64: add_val(where,~0L,s+a); break; case R_X86_64_PC32: - add_val(where,~0L,s+a-p); + add_val(where,MASK(32),s+a-p); break; My guess is that there is some .o file being produced with this reloc on your machine. It would be great if you could confirm this with objdump -r on the .o file, and maybe trace load in axiom (I forget how to issue underlying lisp commands in axiom but it can be done.) The mystery is why my up to date testing amd64 system does not show this. The relocs are output by gcc, so your gcc version might be helpful. In any case I will upload a rebuild against latest gcl and close this bug provisionally. Please reopen it if this does not clear the issue. Take care, -- Camm Maguire c...@maguirefamily.org ========================================================================== "The earth is but one country, and mankind its citizens." -- Baha'u'llah -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org