gcl-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Gcl-devel] Re: Issue to build GCL on Mandrake linux distro


From: Camm Maguire
Subject: Re: [Gcl-devel] Re: Issue to build GCL on Mandrake linux distro
Date: 19 Nov 2003 09:35:16 -0500
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2

Greetings, and thanks as always for your helpful reports!

As you know by now, axiom starts by building GCL.  I cannot tell from
the log you've posted whether this stage has been completed or not.
It is most helpful for me (as a GCL developer) to see output from the
GCL ./configure stage through the creation of
lsp/gcl-2.6.1/unixport/saved_gcl.  

The sed commands are issued by configure, not make, as they make the
"make" related files and headers from the corresponding ".in"
files. The "unterminated sed command" indicates that one of the
variables configure tried to determine automatically has been
corrupted, usually by capturing stray puctuation characters.  With
great probability, this is the step trying to determine where your
static bfd and iberty libs are kept.  This is normally
/usr/lib/libbfd.a and /usr/lib/libiberty.a.  configure tries to
determing this by creating a dummy foo.c file:

echo 'int main() {bfd_init();bfd_openr("/dev/null",0);return 0;}'
  >foo.c

and then parsing the output of

gcc -Wl,-M -static -o foo.o foo.c -lbfd -liberty

to see where gcc found the libs.  This command is run through:

2>&1 | tr '()' '\012\012' | $AWK '{print $NF}' | sort | uniq

in 2.6.1-18.  I've recently added for the utexas people an additional
filter: 

2>&1 | grep -v : | tr '()' '\012\012' | $AWK '{print $NF}' | sort | uniq

If you wanted, you could change the line in configure.in to look like
the above, run autoconf, and then ./configure in the gcl-2.6.1
directory and see if the "unterminated sed" message vanishes.
Alternatively, you can make the foo.c, run the gcc command, pipe it
though your existing filter, and let me know the results.  We can then
get this to work automatically on Mandrake.

GCL has its own local copy of bfd for situations like these.  It
should not be relied upon, as it is seldomly updated, but it can get
you going in a pinch.  It sounds as though your local binutils build
went smoothly, but I cannot tell from this report.  More output please
:-).

Take care,

address@hidden (Paul Zimmermann) writes:

>    > Unfortunately it was removed by "make". Is there a way to keep temporary
>    > files when an error occurs?
> 
>    Yes, add a special target in the Makefile:
> 
>    .PRECIOUS: %.sed
> 
> In which Makefile? I tried both the main Makefile, lsp/Makefile,
> lsp/gcl-2.6.1/makefile, but the last one is re-generated by the main "make", 
> so this new target is lost.
> 
> If I put --disable-statsysbfd --enable-locbfd in the gcl configure
> (file lsp/Makefile, line 37), as suggested by Camm Maguire, the 'sed'
> problem disappears, but another problem appears:
> 
> make[3]: Entering directory `/var/tmp/axiom/src/boot'
> 2 making /var/tmp/axiom/int/boot/boothdr.lisp from 
> /var/tmp/axiom/src/boot/boothdr.lisp.pamphlet
> 1 making /var/tmp/axiom/obj/linux/boot/boothdr.o from 
> /var/tmp/axiom/int/boot/boothdr.lisp
> /bin/sh: line 1: /var/tmp/axiom/obj/linux/bin/lisp: No such file or directory
> make[3]: *** [/var/tmp/axiom/obj/linux/boot/boothdr.o] Error 127
> make[3]: Leaving directory `/var/tmp/axiom/src/boot'
> make[2]: *** [bootdir] Error 2
> make[2]: Leaving directory `/var/tmp/axiom/src'
> make[1]: *** [srcdir] Error 2
> make[1]: Leaving directory `/var/tmp/axiom'
> make: *** [all] Error 2
> 
> Regards,
> Paul
> 
> ##############################################################################
> 
> norroy% make
> 13 making noweb
> patching file modules.c
> mnt.o: In function `emitfile':
> mnt.o(.text+0x361): the use of `tmpnam' is dangerous, better use `mkstemp'
> make[1]: [install-shell] Error 1 (ignored)
> make[1]: [install-code] Error 1 (ignored)
> texhash: /usr/share/texmf: directory not writable. Skipping...
> rm: cannot remove `/var/lib/texmf/ls-R': Operation not permitted
> mv: cannot move `/var/lib/texmf/lsR.W3UAth/lsR22229.tmp' to 
> `/var/lib/texmf/ls-R': Operation not permitted
> make[1]: [install-elisp] Error 1 (ignored)
> 0 SPAD=/var/tmp/axiom/mnt/linux SYS=linux SPD=/var/tmp/axiom 
> LSP=/var/tmp/axiom/lsp GCLDIR=/var/tmp/axiom/lsp/gcl-2.6.1 
> SRC=/var/tmp/axiom/src INT=/var/tmp/axiom/int OBJ=/var/tmp/axiom/obj 
> MNT=/var/tmp/axiom/mnt ZIPS=/var/tmp/axiom/zips TMP=/var/tmp/axiom/obj/tmp 
> SPADBIN=/var/tmp/axiom/mnt/linux/bin INC=/var/tmp/axiom/src/include 
> CCLBASE=/var/tmp/axiom/obj/linux/ccl/ccllisp PART=cprogs SUBPART=everything 
> NOISE=-o /var/tmp/axiom/obj/tmp/trace GCLVERSION=gcl-2.6.1 
> TANGLE=/var/tmp/axiom/mnt/linux/bin/lib/notangle
> 10 copying /var/tmp/axiom/src/scripts to /var/tmp/axiom/mnt/linux/bin
> 1 making a linux system, PART=cprogs SUBPART=everything
> 2 Environment SPAD=/var/tmp/axiom/mnt/linux SYS=linux SPD=/var/tmp/axiom 
> LSP=/var/tmp/axiom/lsp GCLDIR=/var/tmp/axiom/lsp/gcl-2.6.1 
> SRC=/var/tmp/axiom/src INT=/var/tmp/axiom/int OBJ=/var/tmp/axiom/obj 
> MNT=/var/tmp/axiom/mnt ZIPS=/var/tmp/axiom/zips TMP=/var/tmp/axiom/obj/tmp 
> SPADBIN=/var/tmp/axiom/mnt/linux/bin INC=/var/tmp/axiom/src/include 
> CCLBASE=/var/tmp/axiom/obj/linux/ccl/ccllisp PART=cprogs SUBPART=everything 
> NOISE=-o /var/tmp/axiom/obj/tmp/trace GCLVERSION=gcl-2.6.1 
> TANGLE=/var/tmp/axiom/mnt/linux/bin/lib/notangle
> make[1]: Entering directory `/var/tmp/axiom'
> 11 checking directory structure
> 12 Environment: PLF=LINUXplatform CCF=-O2 -fno-strength-reduce -Wall 
> -D_GNU_SOURCE -DLINUXplatform -I/usr/X11/include LDF=-L/usr/X11R6/lib CC=gcc 
> AWK=gawk RANLIB=ranlib TOUCH=touch TAR=tar 
> AXIOMXLROOT=/var/tmp/axiom/mnt/linux/compiler O=o BYE=bye LISP=lsp 
> DAASE=/var/tmp/axiom/src/share XLIB=/usr/X11R6/lib
> 18 making /var/tmp/axiom/src
> make[2]: Entering directory `/var/tmp/axiom/src'
> 1 making /var/tmp/axiom/src/scripts
> make[3]: Entering directory `/var/tmp/axiom/src/scripts'
> 1 making /var/tmp/axiom/src/scripts
> make[3]: Leaving directory `/var/tmp/axiom/src/scripts'
> 17 making /var/tmp/axiom/src/lib
> make[3]: Entering directory `/var/tmp/axiom/src/lib'
> 1 making /var/tmp/axiom/int/lib/bsdsignal.c from 
> /var/tmp/axiom/src/lib/bsdsignal.c.pamphlet
> 2 making /var/tmp/axiom/obj/linux/lib/bsdsignal.o from 
> /var/tmp/axiom/int/lib/bsdsignal.c
> 9 making /var/tmp/axiom/int/lib/cursor.c from 
> /var/tmp/axiom/src/lib/cursor.c.pamphlet
> 10 making /var/tmp/axiom/obj/linux/lib/cursor.o from 
> /var/tmp/axiom/int/lib/cursor.c
> 13 making /var/tmp/axiom/int/lib/edin.c from 
> /var/tmp/axiom/src/lib/edin.c.pamphlet
> 14 making /var/tmp/axiom/obj/linux/lib/edin.o from 
> /var/tmp/axiom/int/lib/edin.c
> 17 making /var/tmp/axiom/int/lib/fnct_key.c from 
> /var/tmp/axiom/src/lib/fnct_key.c.pamphlet
> 18 making /var/tmp/axiom/obj/linux/lib/fnct_key.o from 
> /var/tmp/axiom/int/lib/fnct_key.c
> 21 making /var/tmp/axiom/int/lib/halloc.c from 
> /var/tmp/axiom/src/lib/halloc.c.pamphlet
> 22 making /var/tmp/axiom/obj/linux/lib/halloc.o from 
> /var/tmp/axiom/int/lib/halloc.c
> 29 making /var/tmp/axiom/int/lib/openpty.c from 
> /var/tmp/axiom/src/lib/openpty.c.pamphlet
> 30 making /var/tmp/axiom/obj/linux/lib/openpty.o from 
> /var/tmp/axiom/int/lib/openpty.c
> 33 making /var/tmp/axiom/int/lib/pixmap.c from 
> /var/tmp/axiom/src/lib/pixmap.c.pamphlet
> 34 making /var/tmp/axiom/obj/linux/lib/pixmap.o from 
> /var/tmp/axiom/int/lib/pixmap.c
> 37 making /var/tmp/axiom/int/lib/prt.c from 
> /var/tmp/axiom/src/lib/prt.c.pamphlet
> 38 making /var/tmp/axiom/obj/linux/lib/prt.o from /var/tmp/axiom/int/lib/prt.c
> 41 making /var/tmp/axiom/int/lib/sockio-c.c from 
> /var/tmp/axiom/src/lib/sockio-c.c.pamphlet
> 42 making /var/tmp/axiom/obj/linux/lib/sockio-c.o from 
> /var/tmp/axiom/int/lib/sockio-c.c
> 45 making /var/tmp/axiom/int/lib/spadcolors.c from 
> /var/tmp/axiom/src/lib/spadcolors.c.pamphlet
> 46 making /var/tmp/axiom/obj/linux/lib/spadcolors.o from 
> /var/tmp/axiom/int/lib/spadcolors.c
> 49 making /var/tmp/axiom/int/lib/util.c from 
> /var/tmp/axiom/src/lib/util.c.pamphlet
> 50 making /var/tmp/axiom/obj/linux/lib/util.o from 
> /var/tmp/axiom/int/lib/util.c
> 53 making /var/tmp/axiom/int/lib/wct.c from 
> /var/tmp/axiom/src/lib/wct.c.pamphlet
> 54 making /var/tmp/axiom/obj/linux/lib/wct.o from /var/tmp/axiom/int/lib/wct.c
> 57 making /var/tmp/axiom/int/lib/XDither.c from 
> /var/tmp/axiom/src/lib/XDither.c.pamphlet
> 58 making /var/tmp/axiom/obj/linux/lib/XDither.o from 
> /var/tmp/axiom/int/lib/XDither.c
> 61 making /var/tmp/axiom/int/lib/XShade.c from 
> /var/tmp/axiom/src/lib/XShade.c.pamphlet
> 62 making /var/tmp/axiom/obj/linux/lib/XShade.o from 
> /var/tmp/axiom/int/lib/XShade.c
> 65 making /var/tmp/axiom/int/lib/XSpadFill.c from 
> /var/tmp/axiom/src/lib/XSpadFill.c.pamphlet
> 66 making /var/tmp/axiom/obj/linux/lib/XSpadFill.o from 
> /var/tmp/axiom/int/lib/XSpadFill.c
> 73 making /var/tmp/axiom/obj/linux/lib/libspad.a
> 5 making /var/tmp/axiom/int/lib/cfuns-c.c from 
> /var/tmp/axiom/src/lib/cfuns-c.c.pamphlet
> 6 making /var/tmp/axiom/obj/linux/lib/cfuns-c.o from 
> /var/tmp/axiom/int/lib/cfuns-c.c
> 25 making /var/tmp/axiom/int/lib/hash.c from 
> /var/tmp/axiom/src/lib/hash.c.pamphlet
> 26 making /var/tmp/axiom/obj/linux/lib/hash.o from 
> /var/tmp/axiom/int/lib/hash.c
> 3 making /var/tmp/axiom/int/doc/src/lib/bsdsignal.c.dvi from 
> /var/tmp/axiom/src/lib/bsdsignal.c.pamphlet
> 4 making /var/tmp/axiom/mnt/linux/doc/src/lib/bsdsignal.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/bsdsignal.c.dvi
> 7 making /var/tmp/axiom/int/doc/src/lib/cfuns-c.c.dvi from 
> /var/tmp/axiom/src/lib/cfuns-c.c.pamphlet
> 8 making /var/tmp/axiom/mnt/linux/doc/src/lib/cfuns-c.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/cfuns-c.c.dvi
> 11 making /var/tmp/axiom/int/doc/src/lib/cursor.c.dvi from 
> /var/tmp/axiom/src/lib/cursor.c.pamphlet
> 12 making /var/tmp/axiom/mnt/linux/doc/src/lib/cursor.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/cursor.c.dvi
> 15 making /var/tmp/axiom/int/doc/src/lib/edin.c.dvi from 
> /var/tmp/axiom/src/lib/edin.c.pamphlet
> 16 making /var/tmp/axiom/mnt/linux/doc/src/lib/edin.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/edin.c.dvi
> 19 making /var/tmp/axiom/int/doc/src/lib/fnct_key.c.dvi from 
> /var/tmp/axiom/src/lib/fnct_key.c.pamphlet
> 20 making /var/tmp/axiom/mnt/linux/doc/src/lib/fnct_key.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/fnct_key.c.dvi
> 23 making /var/tmp/axiom/int/doc/src/lib/halloc.c.dvi from 
> /var/tmp/axiom/src/lib/halloc.c.pamphlet
> 24 making /var/tmp/axiom/mnt/linux/doc/src/lib/halloc.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/halloc.c.dvi
> 27 making /var/tmp/axiom/int/doc/src/lib/hash.c.dvi from 
> /var/tmp/axiom/src/lib/hash.c.pamphlet
> 28 making /var/tmp/axiom/mnt/linux/doc/src/lib/hash.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/hash.c.dvi
> 31 making /var/tmp/axiom/int/doc/src/lib/openpty.c.dvi from 
> /var/tmp/axiom/src/lib/openpty.c.pamphlet
> 32 making /var/tmp/axiom/mnt/linux/doc/src/lib/openpty.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/openpty.c.dvi
> 35 making /var/tmp/axiom/int/doc/src/lib/pixmap.c.dvi from 
> /var/tmp/axiom/src/lib/pixmap.c.pamphlet
> 36 making /var/tmp/axiom/mnt/linux/doc/src/lib/pixmap.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/pixmap.c.dvi
> 39 making /var/tmp/axiom/int/doc/src/lib/prt.c.dvi from 
> /var/tmp/axiom/src/lib/prt.c.pamphlet
> 40 making /var/tmp/axiom/mnt/linux/doc/src/lib/prt.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/prt.c.dvi
> 43 making /var/tmp/axiom/int/doc/src/lib/sockio-c.c.dvi from 
> /var/tmp/axiom/src/lib/sockio-c.c.pamphlet
> 44 making /var/tmp/axiom/mnt/linux/doc/src/lib/sockio-c.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/sockio-c.c.dvi
> 71 making /var/tmp/axiom/mnt/linux/doc/src/lib/Makefile.dvi from 
> /var/tmp/axiom/src/lib/Makefile.dvi
> 47 making /var/tmp/axiom/int/doc/src/lib/spadcolors.c.dvi from 
> /var/tmp/axiom/src/lib/spadcolors.c.pamphlet
> 48 making /var/tmp/axiom/mnt/linux/doc/src/lib/spadcolors.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/spadcolors.c.dvi
> 51 making /var/tmp/axiom/int/doc/src/lib/util.c.dvi from 
> /var/tmp/axiom/src/lib/util.c.pamphlet
> 52 making /var/tmp/axiom/mnt/linux/doc/src/lib/util.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/util.c.dvi
> 55 making /var/tmp/axiom/int/doc/src/lib/wct.c.dvi from 
> /var/tmp/axiom/src/lib/wct.c.pamphlet
> 56 making /var/tmp/axiom/mnt/linux/doc/src/lib/wct.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/wct.c.dvi
> 59 making /var/tmp/axiom/int/doc/src/lib/XDither.c.dvi from 
> /var/tmp/axiom/src/lib/XDither.c.pamphlet
> 60 making /var/tmp/axiom/mnt/linux/doc/src/lib/XDither.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/XDither.c.dvi
> 63 making /var/tmp/axiom/int/doc/src/lib/XShade.c.dvi from 
> /var/tmp/axiom/src/lib/XShade.c.pamphlet
> 64 making /var/tmp/axiom/mnt/linux/doc/src/lib/XShade.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/XShade.c.dvi
> 67 making /var/tmp/axiom/int/doc/src/lib/XSpadFill.c.dvi from 
> /var/tmp/axiom/src/lib/XSpadFill.c.pamphlet
> 68 making /var/tmp/axiom/mnt/linux/doc/src/lib/XSpadFill.c.dvi from 
> /var/tmp/axiom/int/doc/src/lib/XSpadFill.c.dvi
> 72 finished making /var/tmp/axiom/obj/linux/lib/libspad.a 
> /var/tmp/axiom/obj/linux/lib/cfuns-c.o /var/tmp/axiom/obj/linux/lib/hash.o
> make[3]: Leaving directory `/var/tmp/axiom/src/lib'
> make[2]: Leaving directory `/var/tmp/axiom/src'
> 0 PLF=LINUXplatform CCF=-O2 -fno-strength-reduce -Wall -D_GNU_SOURCE 
> -DLINUXplatform -I/usr/X11/include LDF=-L/usr/X11R6/lib CC=gcc AWK=gawk 
> RANLIB=ranlib TOUCH=touch TAR=tar 
> AXIOMXLROOT=/var/tmp/axiom/mnt/linux/compiler O=o BYE=bye LISP=lsp 
> DAASE=/var/tmp/axiom/src/share XLIB=/usr/X11R6/lib
> 10 copying /var/tmp/axiom/src/scripts to /var/tmp/axiom/mnt/linux/bin
> 19 making /var/tmp/axiom/lsp
> make[2]: Entering directory `/var/tmp/axiom/lsp'
> 2 building gcl-2.6.1
> 3 applying EXTRAS patch to h/linux.defs
> patching file linux.defs
> 4 setup ini files for EXTRAS patch
> 6 applying libspad.a patch to unixport/makefile
> patching file makefile
> 7 applying toploop patch to unixport/init_gcl.lsp
> patching file init_gcl.lsp.in
> 18 applying MAX_STACK_SIZE patch
> patching file main.c
> 11 applying tail-recursive noise patch
> patching file gcl_cmpflet.lsp
> 12 applying tail-recursive noise patch
> patching file gcl_cmpcall.lsp
> 26 copy gcl_collectfn.lsp to collectfn.lsp
> checking build system type... i686-pc-linux-gnu
> checking host system type... i686-pc-linux-gnu
> host=i686-pc-linux-gnu
> enable_machine=
> use=386-linux
> checking for gcc... gcc
> checking for C compiler default output... a.out
> checking whether the C compiler works... yes
> checking whether we are cross compiling... no
> checking for suffix of executables... 
> checking for suffix of object files... o
> checking whether we are using the GNU C compiler... yes
> checking whether gcc accepts -g... yes
> checking how to run the C preprocessor... gcc -E
> checking for gawk... gawk
> checking system version (for dynamic loading)... checking for makeinfo... 
> makeinfo
> Linux-2.4.20
> checking use_gmp=yes, doing configure in gmp directory... 
> #
> #
> # -------------------
> # Subconfigure of GMP
> #
> #
> configure: WARNING: If you wanted to set the --build type, don't use --host.
>     If a cross compiler is detected then cross compile mode will be used.
> checking build system type... athlon-pc-linux-gnu
> checking host system type... i686-pc-linux-gnu
> checking for a BSD compatible install... /usr/bin/install -c
> checking whether build environment is sane... yes
> checking for mawk... gawk
> checking whether make sets ${MAKE}... yes
> checking whether to enable maintainer-specific portions of Makefiles... no
> checking compiler gcc -g -O2 -fomit-frame-pointer ... yes
> checking compiler gcc -g -O2 -fomit-frame-pointer  -mcpu=pentiumpro... yes
> checking whether gcc -march=pentiumpro is good... configure: WARNING: 
> unrecognised gcc version string: gcc (GCC) 3.2 (Mandrake Linux 9.0 3.2-1mdk)
> Copyright (C) 2002 Free Software Foundation, Inc.
> This is free software; see the source for copying conditions.  There is NO
> warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
> no
> checking compiler gcc -g -O2 -fomit-frame-pointer -mcpu=pentiumpro  
> -march=i486... yes
> checking for i686-pc-linux-gnu-gcc... gcc
> checking for C compiler default output... a.out
> checking whether the C compiler works... yes
> checking whether we are cross compiling... no
> checking for executable suffix... 
> checking for object suffix... o
> checking whether we are using the GNU C compiler... yes
> checking whether gcc accepts -g... yes
> checking for style of include used by make... GNU
> checking dependency style of gcc... none
> checking for gcc option to accept ANSI C... none needed
> checking how to run the C preprocessor... gcc -E
> using ABI="standard"
>       CC="gcc"
>       CFLAGS="-g -O2 -fomit-frame-pointer -mcpu=pentiumpro -march=i486"
>       CPPFLAGS=""
> checking for gcc option to accept ANSI C... none needed
> checking for function prototypes... yes
> checking for ANSI C header files... yes
> checking for string.h... yes
> checking for i686-pc-linux-gnu-ar... no
> checking for ar... ar
> checking for BSD-compatible nm... nm
> checking for ld used by GCC... /usr/bin/ld
> checking if the linker (/usr/bin/ld) is GNU ld... yes
> checking for /usr/bin/ld option to reload object files... -r
> checking whether ln -s works... yes
> checking how to recognise dependant libraries... pass_all
> checking for dlfcn.h... yes
> checking the maximum length of command line arguments... 49153
> checking command to parse nm output from gcc object... ok
> checking for objdir... .libs
> checking for i686-pc-linux-gnu-ranlib... ranlib
> checking for i686-pc-linux-gnu-strip... no
> checking for strip... strip
> checking if gcc static flag  works... yes
> checking if gcc supports -fno-rtti -fno-exceptions... yes
> checking for gcc option to produce PIC... -fPIC
> checking if gcc PIC flag -fPIC works... yes
> checking if gcc supports -c -o file.o... yes
> checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
> checking whether -lc should be explicitly linked in... no
> checking how to hardcode library paths into programs... immediate
> checking whether stripping libraries is possible... yes
> checking dynamic linker characteristics... GNU/Linux ld.so
> checking if libtool supports shared libraries... yes
> checking whether to build shared libraries... yes
> checking whether to build static libraries... yes
> configure: creating libtool
> checking for ANSI C header files... (cached) yes
> checking whether time.h and sys/time.h may both be included... yes
> checking for locale.h... yes
> checking for sys/mman.h... yes
> checking for sys/param.h... yes
> checking for sys/processor.h... no
> checking for sys/resource.h... yes
> checking for sys/sysctl.h... yes
> checking for sys/systemcfg.h... no
> checking for sys/time.h... yes
> checking for sys/times.h... yes
> checking for sys/types.h... yes
> checking for sys/stat.h... yes
> checking for stdlib.h... yes
> checking for string.h... (cached) yes
> checking for memory.h... yes
> checking for strings.h... yes
> checking for inttypes.h... yes
> checking for stdint.h... yes
> checking for unistd.h... yes
> checking whether fgetc is declared... yes
> checking whether fscanf is declared... yes
> checking whether optarg is declared... yes
> checking whether ungetc is declared... yes
> checking whether vfprintf is declared... yes
> checking return type of signal handlers... void
> checking for intmax_t... yes
> checking for long double... yes
> checking for long long... yes
> checking for ptrdiff_t... yes
> checking for quad_t... yes
> checking for preprocessor stringizing operator... yes
> checking whether <stdarg.h> exists and works... yes
> checking whether gcc __attribute__ ((const)) works... yes
> checking whether gcc __attribute__ ((malloc)) works... yes
> checking whether gcc __attribute__ ((mode (XX))) works... yes
> checking whether gcc __attribute__ ((noreturn)) works... yes
> checking for inline... inline
> checking for main in -lm... yes
> checking for working alloca.h... yes
> checking for alloca (via gmp-impl.h)... yes
> checking how to allocate temporary memory... alloca
> checking for alarm... yes
> checking for getpagesize... yes
> checking for getrusage... yes
> checking for gettimeofday... yes
> checking for localeconv... yes
> checking for memset... yes
> checking for mmap... yes
> checking for mprotect... yes
> checking for obstack_vprintf... yes
> checking for popen... yes
> checking for processor_info... no
> checking for read_real_time... no
> checking for strchr... yes
> checking for strnlen... yes
> checking for strtoul... yes
> checking for sysconf... yes
> checking for sysctl... yes
> checking for sysctlbyname... no
> checking for times... yes
> checking for vsnprintf... yes
> checking whether vsnprintf works... yes
> checking whether sscanf needs writable input... no
> checking for suitable m4... m4
> checking if m4wrap produces spurious output... no
> checking how to switch to text section... .text
> checking how to switch to data section... .data
> checking what assembly label suffix to use... :
> checking how to export a symbol... .globl
> checking if globals are prefixed by underscore... no
> checking how to switch to read-only data section...   .section        .rodata
> checking if the export directive needs an attribute... 
> checking for assembler .type directive... .type       $1,@$2
> checking for assembler .size directive... .size       $1,$2
> checking what prefix to use for a local label... .L
> checking how to define a 32-bit word... .long
> checking if .align assembly directive is logarithmic... no
> checking if the .align directive accepts an 0x90 fill in .text... yes
> checking if the assembler takes cl with shldl... yes
> creating config.m4
> configure: creating ./config.status
> config.status: creating Makefile
> config.status: creating mpbsd/Makefile
> config.status: creating mpf/Makefile
> config.status: creating mpn/Makefile
> config.status: creating mpq/Makefile
> config.status: creating mpz/Makefile
> config.status: creating printf/Makefile
> config.status: creating scanf/Makefile
> config.status: creating cxx/Makefile
> config.status: creating tests/Makefile
> config.status: creating tests/devel/Makefile
> config.status: creating tests/mpbsd/Makefile
> config.status: creating tests/mpf/Makefile
> config.status: creating tests/mpn/Makefile
> config.status: creating tests/mpq/Makefile
> config.status: creating tests/mpz/Makefile
> config.status: creating tests/rand/Makefile
> config.status: creating tests/misc/Makefile
> config.status: creating tests/cxx/Makefile
> config.status: creating tune/Makefile
> config.status: creating demos/Makefile
> config.status: creating demos/calc/Makefile
> config.status: creating demos/expr/Makefile
> config.status: creating gmp.h
> config.status: creating mp.h
> config.status: creating demos/expr/expr-impl.h
> config.status: creating config.h
> config.status: linking ./mpn/x86/udiv.asm to mpn/udiv.asm
> config.status: linking ./mpn/x86/umul.asm to mpn/umul.asm
> config.status: linking ./mpn/generic/add.c to mpn/add.c
> config.status: linking ./mpn/generic/add_1.c to mpn/add_1.c
> config.status: linking ./mpn/x86/aors_n.asm to mpn/add_n.asm
> config.status: linking ./mpn/generic/sub.c to mpn/sub.c
> config.status: linking ./mpn/generic/sub_1.c to mpn/sub_1.c
> config.status: linking ./mpn/x86/aors_n.asm to mpn/sub_n.asm
> config.status: linking ./mpn/x86/mul_1.asm to mpn/mul_1.asm
> config.status: linking ./mpn/x86/p6/aorsmul_1.asm to mpn/addmul_1.asm
> config.status: linking ./mpn/x86/p6/aorsmul_1.asm to mpn/submul_1.asm
> config.status: linking ./mpn/x86/lshift.asm to mpn/lshift.asm
> config.status: linking ./mpn/x86/rshift.asm to mpn/rshift.asm
> config.status: linking ./mpn/x86/p6/dive_1.asm to mpn/dive_1.asm
> config.status: linking ./mpn/x86/p6/diveby3.asm to mpn/diveby3.asm
> config.status: linking ./mpn/generic/divis.c to mpn/divis.c
> config.status: linking ./mpn/generic/divrem.c to mpn/divrem.c
> config.status: linking ./mpn/x86/divrem_1.asm to mpn/divrem_1.asm
> config.status: linking ./mpn/generic/divrem_2.c to mpn/divrem_2.c
> config.status: linking ./mpn/generic/fib2_ui.c to mpn/fib2_ui.c
> config.status: linking ./mpn/x86/p6/mod_1.asm to mpn/mod_1.asm
> config.status: linking ./mpn/x86/mod_34lsub1.asm to mpn/mod_34lsub1.asm
> config.status: linking ./mpn/x86/p6/mode1o.asm to mpn/mode1o.asm
> config.status: linking ./mpn/generic/dump.c to mpn/dump.c
> config.status: linking ./mpn/generic/mul.c to mpn/mul.c
> config.status: linking ./mpn/generic/mul_fft.c to mpn/mul_fft.c
> config.status: linking ./mpn/generic/mul_n.c to mpn/mul_n.c
> config.status: linking ./mpn/x86/mul_basecase.asm to mpn/mul_basecase.asm
> config.status: linking ./mpn/x86/p6/sqr_basecase.asm to mpn/sqr_basecase.asm
> config.status: linking ./mpn/generic/random.c to mpn/random.c
> config.status: linking ./mpn/generic/random2.c to mpn/random2.c
> config.status: linking ./mpn/generic/sqrtrem.c to mpn/sqrtrem.c
> config.status: linking ./mpn/generic/get_str.c to mpn/get_str.c
> config.status: linking ./mpn/generic/set_str.c to mpn/set_str.c
> config.status: linking ./mpn/generic/scan0.c to mpn/scan0.c
> config.status: linking ./mpn/generic/scan1.c to mpn/scan1.c
> config.status: linking ./mpn/generic/popcount.c to mpn/popcount.c
> config.status: linking ./mpn/generic/hamdist.c to mpn/hamdist.c
> config.status: linking ./mpn/generic/cmp.c to mpn/cmp.c
> config.status: linking ./mpn/generic/perfsqr.c to mpn/perfsqr.c
> config.status: linking ./mpn/generic/bdivmod.c to mpn/bdivmod.c
> config.status: linking ./mpn/generic/gcd_1.c to mpn/gcd_1.c
> config.status: linking ./mpn/generic/gcd.c to mpn/gcd.c
> config.status: linking ./mpn/generic/gcdext.c to mpn/gcdext.c
> config.status: linking ./mpn/generic/tdiv_qr.c to mpn/tdiv_qr.c
> config.status: linking ./mpn/generic/dc_divrem_n.c to mpn/dc_divrem_n.c
> config.status: linking ./mpn/generic/sb_divrem_mn.c to mpn/sb_divrem_mn.c
> config.status: linking ./mpn/generic/jacbase.c to mpn/jacbase.c
> config.status: linking ./mpn/x86/copyi.asm to mpn/copyi.asm
> config.status: linking ./mpn/x86/p6/copyd.asm to mpn/copyd.asm
> config.status: linking ./mpn/x86/p6/gmp-mparam.h to gmp-mparam.h
> #
> #
> #
> # Subconfigure of GMP done
> # ------------------------
> #
> checking "for size of gmp limbs"... 4
> checking "_SHORT_LIMB"... no
> checking "_LONG_LONG_LIMB"... no
> checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include
> checking for gethostbyname... yes
> checking for connect... yes
> checking for remove... yes
> checking for shmat... yes
> checking for IceConnectionNumber in -lICE... yes
> -I/usr/X11R6/include
> -L/usr/X11R6/lib
> 
> -lSM -lICE
> checking for main in -lXmu... yes
> checking for main in -lXt... yes
> checking for main in -lXext... yes
> checking for main in -lXaw... yes
> checking for main in -lX11... yes
> #
> #
> # -------------------------
> # Subconfigure of LIBIBERTY
> #
> #
> creating cache ./config.cache
> checking whether to enable maintainer-specific portions of Makefiles... no
> checking for makeinfo... makeinfo
> checking for perl... perl
> checking host system type... i686-pc-linux-gnu
> checking build system type... i686-pc-linux-gnu
> checking for ar... ar
> checking for ranlib... ranlib
> checking for gcc... gcc
> checking whether we are using GNU C... yes
> checking whether gcc accepts -g... yes
> checking whether gcc and cc understand -c and -o together... yes
> checking for POSIXized ISC... no
> checking for working const... yes
> checking for inline... inline
> checking for a BSD compatible install... /usr/bin/install -c
> checking how to run the C preprocessor... gcc -E
> checking for sys/file.h... yes
> checking for sys/param.h... yes
> checking for limits.h... yes
> checking for stdlib.h... yes
> checking for string.h... yes
> checking for unistd.h... yes
> checking for strings.h... yes
> checking for sys/time.h... yes
> checking for time.h... yes
> checking for sys/resource.h... yes
> checking for sys/stat.h... yes
> checking for sys/mman.h... yes
> checking for fcntl.h... yes
> checking for alloca.h... yes
> checking for dlfcn.h... yes
> checking for sys/wait.h that is POSIX.1 compatible... yes
> checking whether time.h and sys/time.h may both be included... yes
> checking whether errno must be declared... no
> checking for ANSI C header files... yes
> checking for uintptr_t... no
> checking whether weak symbol works... yes
> checking for library containing dlopen... -ldl
> checking for pid_t... yes
> checking whether the C compiler (gcc -g -O2 ) works... yes
> checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
> checking for asprintf... yes
> checking for atexit... yes
> checking for basename... yes
> checking for bcmp... yes
> checking for bcopy... yes
> checking for bsearch... yes
> checking for bzero... yes
> checking for calloc... yes
> checking for clock... yes
> checking for ffs... yes
> checking for getcwd... yes
> checking for getpagesize... yes
> checking for index... yes
> checking for insque... yes
> checking for memchr... yes
> checking for memcmp... yes
> checking for memcpy... yes
> checking for memmove... yes
> checking for memset... yes
> checking for mkstemps... no
> checking for putenv... yes
> checking for random... yes
> checking for rename... yes
> checking for rindex... yes
> checking for setenv... yes
> checking for sigsetmask... yes
> checking for strcasecmp... yes
> checking for strchr... yes
> checking for strdup... yes
> checking for strncasecmp... yes
> checking for strrchr... yes
> checking for strstr... yes
> checking for strtod... yes
> checking for strtol... yes
> checking for strtoul... yes
> checking for tmpnam... yes
> checking for vasprintf... yes
> checking for vfprintf... yes
> checking for vprintf... yes
> checking for vsprintf... yes
> checking for waitpid... yes
> checking whether alloca needs Cray hooks... no
> checking stack direction for C alloca... -1
> checking for vfork.h... no
> checking for working vfork... yes
> checking for _doprnt... no
> checking for sys_errlist... yes
> checking for sys_nerr... yes
> checking for sys_siglist... yes
> checking for getrusage... yes
> checking for on_exit... yes
> checking for psignal... yes
> checking for strerror... yes
> checking for strsignal... yes
> checking for sysconf... yes
> checking for times... yes
> checking for sbrk... yes
> checking for gettimeofday... yes
> checking for stdlib.h... (cached) yes
> checking for unistd.h... (cached) yes
> checking for sys/stat.h... (cached) yes
> checking for sys/types.h... yes
> checking for getpagesize... (cached) yes
> checking for working mmap... yes
> checking for working strncmp... yes
> updating cache ./config.cache
> creating ./config.status
> creating Makefile
> creating testsuite/Makefile
> creating config.h
> #
> #
> #
> # Subconfigure of LIBIBERTY done
> # ------------------------------
> #
> #
> #
> # -------------------
> # Subconfigure of BFD
> #
> #
> creating cache ./config.cache
> checking for Cygwin environment... no
> checking for mingw32 environment... no
> checking host system type... i686-pc-linux-gnu
> checking target system type... i686-pc-linux-gnu
> checking build system type... i686-pc-linux-gnu
> checking for gcc... gcc
> checking whether the C compiler (gcc  ) works... yes
> checking whether the C compiler (gcc  ) is a cross-compiler... no
> checking whether we are using GNU C... yes
> checking whether gcc accepts -g... yes
> checking for POSIXized ISC... no
> checking for a BSD compatible install... /usr/bin/install -c
> checking whether build environment is sane... yes
> checking whether make sets ${MAKE}... yes
> checking for working aclocal... found
> checking for working autoconf... found
> checking for working automake... found
> checking for working autoheader... found
> checking for working makeinfo... found
> checking for ar... ar
> checking for ranlib... ranlib
> checking for ld used by GCC... /usr/bin/ld
> checking if the linker (/usr/bin/ld) is GNU ld... yes
> checking for /usr/bin/ld option to reload object files... -r
> checking for BSD-compatible nm... /usr/bin/nm -B
> checking whether ln -s works... yes
> checking how to recognise dependant libraries... file_magic ELF 
> [0-9][0-9]*-bit [LM]SB( .*|) (shared object|dynamic lib )
> checking for object suffix... o
> checking for executable suffix... no
> checking for file... /usr/bin/file
> checking for ranlib... (cached) ranlib
> checking for strip... strip
> updating cache ./config.cache
> loading cache ./config.cache within ltconfig
> checking for objdir... .libs
> checking for gcc option to produce PIC... -fPIC -DPIC
> checking if gcc PIC flag -fPIC -DPIC works... yes
> checking if gcc static flag -static works... no
> finding the maximum length of command line arguments... 49153
> checking if gcc supports -c -o file.o... yes
> checking if gcc supports -fno-rtti -fno-exceptions ... yes
> checking whether the linker (/usr/bin/ld) supports shared libraries... yes
> checking how to hardcode library paths into programs... immediate
> checking whether stripping libraries is possible... yes
> checking dynamic linker characteristics... GNU/Linux ld.so
> checking command to parse /usr/bin/nm -B output... ok
> checking if libtool supports shared libraries... yes
> checking whether to build shared libraries... no
> checking whether to build static libraries... yes
> creating libtool
> updating cache ./config.cache
> loading cache ./config.cache
> checking whether to enable maintainer-specific portions of Makefiles... no
> checking whether to install libbfd... yes
> checking for executable suffix... (cached) no
> checking for gcc... (cached) gcc
> checking whether the C compiler (gcc -g -O2 ) works... yes
> checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
> checking whether we are using GNU C... (cached) yes
> checking whether gcc accepts -g... (cached) yes
> checking how to run the C preprocessor... gcc -E
> checking for ranlib... (cached) ranlib
> checking for ANSI C header files... yes
> checking for working const... yes
> checking for inline... inline
> checking for off_t... yes
> checking for size_t... yes
> checking for working alloca.h... yes
> checking for alloca... yes
> checking for stdlib.h... yes
> checking for unistd.h... yes
> checking for sys/stat.h... yes
> checking for sys/types.h... yes
> checking for getpagesize... yes
> checking for working mmap... yes
> checking for argz.h... yes
> checking for limits.h... yes
> checking for locale.h... yes
> checking for nl_types.h... yes
> checking for malloc.h... yes
> checking for string.h... yes
> checking for unistd.h... (cached) yes
> checking for values.h... yes
> checking for sys/param.h... yes
> checking for getcwd... yes
> checking for munmap... yes
> checking for putenv... yes
> checking for setenv... yes
> checking for setlocale... yes
> checking for strchr... yes
> checking for strcasecmp... yes
> checking for __argz_count... yes
> checking for __argz_stringify... yes
> checking for __argz_next... yes
> checking for stpcpy... yes
> checking for LC_MESSAGES... yes
> checking whether NLS is requested... yes
> checking whether included gettext is requested... no
> checking for libintl.h... yes
> checking for gettext in libc... yes
> checking for msgfmt... /usr/bin/msgfmt
> checking for dcgettext... yes
> checking for gmsgfmt... /usr/bin/msgfmt
> checking for xgettext... /usr/bin/xgettext
> checking for catalogs to be installed...  fr tr ja es sv
> checking for a BSD compatible install... /usr/bin/install -c
> checking for stddef.h... yes
> checking for string.h... (cached) yes
> checking for strings.h... yes
> checking for stdlib.h... (cached) yes
> checking for time.h... yes
> checking for unistd.h... (cached) yes
> checking for fcntl.h... yes
> checking for sys/file.h... yes
> checking for sys/time.h... yes
> checking whether time.h and sys/time.h may both be included... yes
> checking for dirent.h that defines DIR... yes
> checking for opendir in -ldir... no
> checking for fcntl... yes
> checking for getpagesize... (cached) yes
> checking for setitimer... yes
> checking for sysconf... yes
> checking for fdopen... yes
> checking for getuid... yes
> checking for getgid... yes
> checking whether strstr must be declared... no
> checking whether malloc must be declared... no
> checking whether realloc must be declared... no
> checking whether free must be declared... no
> checking whether getenv must be declared... no
> checking for sys/procfs.h... yes
> checking for prstatus_t in sys/procfs.h... yes
> checking for prstatus32_t in sys/procfs.h... no
> checking for prstatus_t.pr_who in sys/procfs.h... no
> checking for prstatus32_t.pr_who in sys/procfs.h... no
> checking for pstatus_t in sys/procfs.h... no
> checking for pxstatus_t in sys/procfs.h... no
> checking for pstatus32_t in sys/procfs.h... no
> checking for prpsinfo_t in sys/procfs.h... yes
> checking for prpsinfo32_t in sys/procfs.h... no
> checking for psinfo_t in sys/procfs.h... no
> checking for psinfo32_t in sys/procfs.h... no
> checking for lwpstatus_t in sys/procfs.h... no
> checking for lwpxstatus_t in sys/procfs.h... no
> checking for lwpstatus_t.pr_context in sys/procfs.h... no
> checking for lwpstatus_t.pr_reg in sys/procfs.h... no
> checking for win32_pstatus_t in sys/procfs.h... no
> checking for stdlib.h... (cached) yes
> checking for unistd.h... (cached) yes
> checking for sys/stat.h... (cached) yes
> checking for sys/types.h... (cached) yes
> checking for getpagesize... (cached) yes
> checking for working mmap... (cached) yes
> checking for madvise... yes
> checking for mprotect... yes
> updating cache ./config.cache
> creating ./config.status
> creating ../binutils.spec
> creating Makefile
> creating doc/Makefile
> creating bfd-in3.h
> creating po/Makefile.in
> creating config.h
> #
> #
> #
> # Subconfigure of BFD done
> # ------------------------
> #
> checking for long... yes
> checking size of long... 4
> checking sizeof struct contblock... 8
> checking endian.h usability... yes
> checking endian.h presence... yes
> checking for endian.h... yes
> checking "endianness"... little
> checking "finding DBEGIN"... got 0x8000000
> checking "finding CSTACK_ADDRESS"... got -1073744656
> checking "sizeof long long int"... yes
> checking for pagewidth... 12
> checking for getcwd... yes
> checking for getwd... yes
> checking for uname... yes
> checking for gettimeofday... yes
> checking sys/ioctl.h usability... yes
> checking sys/ioctl.h presence... yes
> checking for sys/ioctl.h... yes
> checking for BSDgettimeofday... no
> checking for gettimeofday... (cached) yes
> checking for gettimeofday declaration... present
> checking for sin in -lm... yes
> checking for main in -lmingwex... no
> checking math.h usability... yes
> checking math.h presence... yes
> checking for math.h... yes
> checking values.h usability... yes
> checking values.h presence... yes
> checking for values.h... yes
> checking float.h usability... yes
> checking float.h presence... yes
> checking for float.h... yes
> checking for isnormal... yes
> checking for isfinite... yes
> checking for sockets... checking for connect... (cached) yes
> checking for gethostbyname... (cached) yes
> checking for main in -lreadline... yes
> checking For network code for nsocket.c... yes
> checking check for listen using fcntl... yes
> checking for profil... yes
> checking for setenv... yes
> checking for _cleanup... no
> checking FIONBIO vs. O_NONBLOCK for nonblocking I/O... O_NONBLOCK
> checking check for SV_ONSTACK... yes
> checking check for SIGSYS... yes
> checking check for SIGEMT... no
> checking asm/sigcontext.h usability... yes
> checking asm/sigcontext.h presence... yes
> checking for asm/sigcontext.h... yes
> checking asm/signal.h usability... yes
> checking asm/signal.h presence... yes
> checking for asm/signal.h... yes
> "sigcontext in signal.h"
> checking for emacs... /usr/bin/emacs
> checking emacs site lisp directory... /usr/share/emacs/21.2/site-lisp
> checking emacs default.el... /usr/share/emacs/21.2/site-lisp/default.el
> checking emacs info/dir... /usr/local/info/
> checking for tcl/tk... checking for tclsh... tclsh
> checking for main in -llieee... no
> using TK_VERSION=8.3 in /usr/lib
> checking alloca... yes
> checking Checking for buggy gcc version from redhat... no
> configure: creating ./config.status
> config.status: creating makedefc
> config.status: creating windows/gcl.iss
> config.status: creating windows/gcl.ansi.iss
> config.status: creating windows/install.ansi.lsp
> config.status: creating windows/install.lsp
> config.status: creating h/gclincl.h
> makedefc
> 
> # begin makedefs
> 
> # use=386-linux
> 
> # for main link of raw_gcl
> LIBS= -lm  /var/tmp/axiom/lsp/gcl-2.6.1/binutils/bfd/libbfd.a 
> /var/tmp/axiom/lsp/gcl-2.6.1/binutils/libiberty/libiberty.a -lreadline 
> -lncurses
> 
> #The multi precision library stuff
> MPFILES=$(MPDIR)/@MPI_FILE@ $(MPDIR)/libmport.a
> 
> 
> # root for the installation, eg /usr/local
> # This would cause make install to create /usr/local/bin/gcl and
> # /usr/local/lib/gcl-2-??/* with some basic files.
> prefix=/usr/local
> 
> # where to place the info files
> INFO_DIR=/usr/local/info/
> 
> # where to put emacs lisp files.
> EMACS_SITE_LISP=/usr/share/emacs/21.2/site-lisp
> 
> # the default.el file
> EMACS_DEFAULT_EL=/usr/share/emacs/21.2/site-lisp/default.el
> 
> # numerous TCL/TK variables culled from the tkConfig.sh and tclConfig.sh
> # if these are found.
> TK_CONFIG_PREFIX=/usr/lib
> TK_LIBRARY=/usr/lib/tk8.3
> TCL_LIBRARY=/usr/lib/tcl8.3
> TK_XINCLUDES=-I/usr/X11R6/include
> TK_INCLUDE=-I/usr/lib/../include
> TCL_INCLUDE=-I/usr/lib/../include
> TK_LIB_SPEC=-L/usr/lib -ltk8.3
> TK_BUILD_LIB_SPEC=-L/usr/lib -ltk8.3
> TK_XLIBSW=-L/usr/X11R6/lib -lX11
> TK_XINCLUDES=-I/usr/X11R6/include
> TCL_LIB_SPEC=-L/usr/lib -ltcl8.3${TCL_DBGX}
> TCL_DL_LIBS=-ldl
> TCL_LIBS=-ldl  -lm
> 
> NOTIFY=yes
> CC=gcc
> CFLAGS=-Wall -DVOL=volatile -fsigned-char -fwritable-strings -pipe -O3 
> -fomit-frame-pointer  -I$(GCLDIR)/o
> FINAL_CFLAGS=-Wall -DVOL=volatile -fsigned-char -fwritable-strings -pipe 
> NIFLAGS=-Wall -DVOL=volatile -fsigned-char -fwritable-strings -pipe   
> -I$(GCLDIR)/o
> O3FLAGS=-O3 -fomit-frame-pointer
> O2FLAGS=-O
> 
> RL_OBJS=gcl_readline.o
> 
> RL_LIB=lsp/gcl_readline.o
> 
> MAKEINFO=makeinfo
> 
> FLISP=saved_gcl
> SYSTEM=gcl
> BUILD_BFD=h/bfd.h h/bfdlink.h h/ansidecl.h h/symcat.h
> GMPDIR=gmp3
> X_LIBS= -L/usr/X11R6/lib -lXmu -lXt -lXext -lXaw -lX11
> X_CFLAGS= -I/usr/X11R6/include
> 
> PROCESSOR_FLAGS=
> 
> EXTRA_LOBJS=
> add-defs1 386-linux
> using 386-linux.defs
> make[2]: Leaving directory `/var/tmp/axiom/lsp'
> 15 making /var/tmp/axiom/src
> make[2]: Entering directory `/var/tmp/axiom/src'
> 21 making /var/tmp/axiom/src/boot
> make[3]: Entering directory `/var/tmp/axiom/src/boot'
> 2 making /var/tmp/axiom/int/boot/boothdr.lisp from 
> /var/tmp/axiom/src/boot/boothdr.lisp.pamphlet
> 1 making /var/tmp/axiom/obj/linux/boot/boothdr.o from 
> /var/tmp/axiom/int/boot/boothdr.lisp
> /bin/sh: line 1: /var/tmp/axiom/obj/linux/bin/lisp: No such file or directory
> make[3]: *** [/var/tmp/axiom/obj/linux/boot/boothdr.o] Error 127
> make[3]: Leaving directory `/var/tmp/axiom/src/boot'
> make[2]: *** [bootdir] Error 2
> make[2]: Leaving directory `/var/tmp/axiom/src'
> make[1]: *** [srcdir] Error 2
> make[1]: Leaving directory `/var/tmp/axiom'
> make: *** [all] Error 2
> norroy% 
> 
> 
> _______________________________________________
> Gcl-devel mailing list
> address@hidden
> http://mail.gnu.org/mailman/listinfo/gcl-devel
> 
> 
> 

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]