From: Volker v. N. <vol...@gm...> - 2015-10-26 16:13:09
|
Hi Camm, I hope the following provides enough details. I put nothing but (defun eleven () 11) into a file. volker@uvw32:~/Maxima/test$ gcl GCL (GNU Common Lisp) 2.6.12 ANSI Oct 7 2015 16:20:57 >(load "~/Maxima/test/eleven.lisp") Loading ~/Maxima/test/eleven.lisp Finished loading ~/Maxima/test/eleven.lisp T >(eleven) 11 >(compile 'eleven) Compiling /tmp/gazonk_5346_0.lsp. End of Pass 1. End of Pass 2. OPTIMIZE levels: Safety=0 (No runtime error checking), Space=0, Speed=3 Finished compiling /tmp/gazonk_5346_0.lsp. Loading /tmp/gazonk_5346_0.o start address -T 0x826880 Finished loading /tmp/gazonk_5346_0.o #<compiled-function ELEVEN> NIL NIL >(compile-file "~/Maxima/test/eleven.lisp") Compiling ~/Maxima/test/eleven.lisp. End of Pass 1. End of Pass 2. Error: Fast links are on: do (si::use-fast-links nil) for debugging Signalled by COMPILE-FILE. Condition in COMPILE-FILE [or a callee]: INTERNAL-SIMPLE-ERROR: Format error: illegal directive. V "gcc -c -g -fstack-protector-strong -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -fsigned-char -Wall -Wno-unused-but-set-variable -pipe -I/usr/lib/gcl-2.6.12/unixport/../h -O2 -c "~/Maxima/test/eleven.c" -o "~/Maxima/test/eleven.o" " Broken at COMPILE-FILE. Type :H for Help. 1 Return to top level. >> Take care Volker Am 26.10.2015 um 15:58 schrieb Camm Maguire: > Greetings! > > Volker van Nek <vol...@gm...> writes: > >> I have coded and tested pregexp-replacements for functions using nregex >> in src/commac.lisp and src/cl-info.lisp. >> >> This time I used sbcl. >> (compile_file doesn't work with gcl 2.6.12 in my gcl-Maxima build) >> > > If you'd like to provide the details here I'll try to look into it. > > Take care, > |