[kaffe] Trouble building kaffe from CVS code.

Akhilesh Shirbhate akhilesh.hacking at gmail.com
Tue Jul 5 00:16:34 PDT 2005


I have downloaded the latest kaffe code from cvs in the directory
/home/kaffe/LATEST_CVS
Thus I have a diecteory /home/kaffe/LATEST_CVS/kaffe which contains
all the codes.

I have jikes binary installed in /home/kaffe/LATEST_CVS/jikes-install/bin

My environment is:
BASH=/bin/bash
BASH_VERSINFO=([0]="3" [1]="00" [2]="14" [3]="1" [4]="release"
[5]="i386-redhat-linux-gnu")
BASH_VERSION='3.00.14(1)-release'
CVSROOT=:pserver:readonly at cvs.kaffe.org:/cvs/kaffe
G_BROKEN_FILENAMES=1
HOME=/home/kaffe
HOSTTYPE=i386
OSTYPE=linux-gnu
PATH=/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin::/home/kaffe/LATEST_CVS/jikes-install/bin/
PWD=/home/kaffe/LATEST_CVS
QTDIR=/usr/lib/qt-3.3
SHELL=/bin/bash
USER=kaffe


My system  is:
Linux softrock.vxindia.veritas.com 2.6.10-1.770_FC3 #1 Thu Feb 24
14:00:06 EST 2005 i686 i686 i386 GNU/Linux

My jikes version is:
Version 1.13 3/1/2001 and I have downloaded it from kaffe's site
[http://www.kaffe.org/ftp/pub/packages/jikes/jikes-1.13.tar.gz]

I go to /home/kaffe/LATEST_CVS/kaffe and do:

./configure  --prefix=/home/kaffe/LATEST_CVS/install 
--exec-prefix=/home/kaffe/LATEST_CVS/install  --enable-debug
--with-engine=intrp --with-threads=unix-jthreads    
--with-jikes=/home/kaffe/LATEST_CVS/jikes-install/bin/jikes 
--without-classpath-gtk-awt

The output of the command is attached in file ConfigureOutput.txt
Then I fire:

make all

The output is attached in file MakeOutput.txt
Can anyone point out what went wrong in my process ?

Thanks in advance,
Akhilesh.
-------------- next part --------------
Making all in .
make[1]: Entering directory `/home/kaffe/LATEST_CVS/kaffe'
make top_srcdir=`cd . >/dev/null; pwd` \
	top_builddir=`cd . >/dev/null; pwd` \
	"DEBUG_ENV=" BUILD_ENVIRONMENT-make
make[2]: Entering directory `/home/kaffe/LATEST_CVS/kaffe'
echo BOOTCLASSPATH=\${BOOTCLASSPATH}\'':'\'/home/kaffe/LATEST_CVS/kaffe/libraries/javalib/rt.jar\'':'\'\'':'\'\; export BOOTCLASSPATH | sed 's,/,/,g;s,\\,\\\\,g' > BUILD_ENVIRONMENT.new; \
echo CLASSPATH=.\'':'\'\${GNU_CRYPTO_JAR}\'':'\'\${JAVAX_SECURITY_JAR}\'':'\'\'':'\'\'':'\'\; export CLASSPATH | sed 's,/,/,g;s,\\,\\\\,g' >> BUILD_ENVIRONMENT.new; \
echo KAFFELIBRARYPATH=\${KAFFELIBRARYPATH+\"\$KAFFELIBRARYPATH\"\'':'\'}`for f in /home/kaffe/LATEST_CVS/kaffe/libraries/clib/native/libnative.la /home/kaffe/LATEST_CVS/kaffe/libraries/clib/net/libnet.la /home/kaffe/LATEST_CVS/kaffe/libraries/clib/io/libio.la /home/kaffe/LATEST_CVS/kaffe/libraries/clib/nio/libnio.la /home/kaffe/LATEST_CVS/kaffe/libraries/clib/zip/libzip.la /home/kaffe/LATEST_CVS/kaffe/libraries/clib/management/libmanagement.la /home/kaffe/LATEST_CVS/kaffe/libraries/clib/security/libsecurity.la  ; do echo "$f" | sed 's%/[^/]*$%%'; done | (tr '\012' ' '; echo) | sed -e 's/ $//' -e "s/ /\':\'/g"`\; export KAFFELIBRARYPATH >> BUILD_ENVIRONMENT.new; \
echo JAVA=/home/kaffe/LATEST_CVS/kaffe/kaffe/kaffe/kaffe-bin\; export JAVA >> BUILD_ENVIRONMENT.new; \
echo LD_LIBRARY_PATH=/home/kaffe/LATEST_CVS/kaffe/libraries/clib/classpath/.libs:\${LD_LIBRARY_PATH}\; export LD_LIBRARY_PATH >> BUILD_ENVIRONMENT.new;\
echo DYLD_LIBRARY_PATH=/home/kaffe/LATEST_CVS/kaffe/libraries/clib/classpath/.libs:\${DYLD_LIBRARY_PATH}\; export DYLD_LIBRARY_PATH >> BUILD_ENVIRONMENT.new
rm -f BUILD_ENVIRONMENT
mv BUILD_ENVIRONMENT.new BUILD_ENVIRONMENT
make[2]: Leaving directory `/home/kaffe/LATEST_CVS/kaffe'
make[1]: Leaving directory `/home/kaffe/LATEST_CVS/kaffe'
Making all in libraries/javalib
make[1]: Entering directory `/home/kaffe/LATEST_CVS/kaffe/libraries/javalib'
Making all in .
make[2]: Entering directory `/home/kaffe/LATEST_CVS/kaffe/libraries/javalib'
rm -rf lib
mkdir lib
if test "default" = default; then \
	/bin/sh ./rebuildLib @all.files `cd lib && pwd`/../gnu/classpath/Configuration.java; \
else \
	/bin/sh ./rebuildLib @default `cd lib && pwd`/../gnu/classpath/Configuration.java; \
fi
Compiling classes from  @all.files /home/kaffe/LATEST_CVS/kaffe/libraries/javalib/lib/../gnu/classpath/Configuration.java  using  /home/kaffe/LATEST_CVS/jikes-install/bin/jikes -d /home/kaffe/LATEST_CVS/kaffe/libraries/javalib/lib

Issued 1 semantic warning compiling "java/text/SimpleDateFormat.java":

   142.       builder = new StringBuffer(getClass().getName());
                                         <-------->
*** Caution: Ambiguous reference to member named "getClass" inherited from type "java/lang/Object" but also declared or inherited in the enclosing type "java/text/SimpleDateFormat". Explicit qualification is required.

Found 1 semantic error compiling "java/lang/ClassLoader.java":

                <--------------------------------
  1077. 	new URLClassLoader(urls, parent)
                . . .
  1092. 	};
        -------->
*** Error: A constructor associated with this anonymous type does not throw the exception "java/lang/SecurityException" thrown by its super type, "java/net/URLClassLoader".

Issued 2 semantic warnings compiling "java/awt/MenuItem.java":

   184. 	  setEnabled(false);
                  <--------------->
*** Caution: Ambiguous reference to member named "setEnabled" inherited from type "java/awt/MenuComponent$AccessibleAWTMenuComponent" but also declared or inherited in the enclosing type "java/awt/MenuItem". Explicit qualification is required.


   188.       setEnabled(true);
              <-------------->
*** Caution: Ambiguous reference to member named "setEnabled" inherited from type "java/awt/MenuComponent$AccessibleAWTMenuComponent" but also declared or inherited in the enclosing type "java/awt/MenuItem". Explicit qualification is required.

Found 4 semantic errors compiling "gnu/CORBA/GIOP/MessageHeader.java":

   115.   public static final byte[] MAGIC = new byte[] { 'G', 'I', 'O', 'P' };
                                                          <->
*** Error: A byte value must be an integer value (note that a character literal is not an integer value) in the range -128..127.


   115.   public static final byte[] MAGIC = new byte[] { 'G', 'I', 'O', 'P' };
                                                               <->
*** Error: A byte value must be an integer value (note that a character literal is not an integer value) in the range -128..127.


   115.   public static final byte[] MAGIC = new byte[] { 'G', 'I', 'O', 'P' };
                                                                    <->
*** Error: A byte value must be an integer value (note that a character literal is not an integer value) in the range -128..127.


   115.   public static final byte[] MAGIC = new byte[] { 'G', 'I', 'O', 'P' };
                                                                         <->
*** Error: A byte value must be an integer value (note that a character literal is not an integer value) in the range -128..127.

Found 1 semantic error compiling "javax/swing/KeyStroke.java":

    64.     AWTKeyStroke.registerSubclass(KeyStroke.class);
            <-------------------------------------------->
*** Error: Method "void registerSubclass(java.lang.Class subclass);" in class "java/awt/AWTKeyStroke" has protected or default access. Therefore, it is not accessible in class "javax/swing/KeyStroke" which is in a different package.

Issued 1 semantic warning compiling "java/awt/Checkbox.java":

            <---------------------------------------------
   139.     firePropertyChange(ACCESSIBLE_STATE_PROPERTY,
            . . .
   141.                        state ? AccessibleState.CHECKED : null);
        ------------------------------------------------------------->
*** Caution: Ambiguous reference to member named "firePropertyChange" inherited from type "javax/accessibility/AccessibleContext" but also declared or inherited in the enclosing type "java/awt/Checkbox". Explicit qualification is required.

Issued 2 semantic warnings compiling "gnu/java/awt/color/RgbProfileConverter.java":

   117.     catch (Exception e)
                   <--------->
*** Caution: This try block cannot throw a "checked exception" (JLS section 14.7) that can be caught here. You may have intended to catch a RuntimeException instead of an Exception.


   126.     catch (Exception e)
                   <--------->
*** Caution: This try block cannot throw a "checked exception" (JLS section 14.7) that can be caught here. You may have intended to catch a RuntimeException instead of an Exception.

Issued 2 semantic warnings compiling "gnu/java/awt/color/GrayProfileConverter.java":

    89.     catch (Exception e)
                   <--------->
*** Caution: This try block cannot throw a "checked exception" (JLS section 14.7) that can be caught here. You may have intended to catch a RuntimeException instead of an Exception.


    98.     catch (Exception e)
                   <--------->
*** Caution: This try block cannot throw a "checked exception" (JLS section 14.7) that can be caught here. You may have intended to catch a RuntimeException instead of an Exception.

Issued 6 semantic warnings compiling "gnu/java/awt/color/ClutProfileConverter.java":

    65.     catch (Exception e)
                   <--------->
*** Caution: This try block cannot throw a "checked exception" (JLS section 14.7) that can be caught here. You may have intended to catch a RuntimeException instead of an Exception.


    74.     catch (Exception e)
                   <--------->
*** Caution: This try block cannot throw a "checked exception" (JLS section 14.7) that can be caught here. You may have intended to catch a RuntimeException instead of an Exception.


    87.     catch (Exception e)
                   <--------->
*** Caution: This try block cannot throw a "checked exception" (JLS section 14.7) that can be caught here. You may have intended to catch a RuntimeException instead of an Exception.


    96.     catch (Exception e)
                   <--------->
*** Caution: This try block cannot throw a "checked exception" (JLS section 14.7) that can be caught here. You may have intended to catch a RuntimeException instead of an Exception.


   109.     catch (Exception e)
                   <--------->
*** Caution: This try block cannot throw a "checked exception" (JLS section 14.7) that can be caught here. You may have intended to catch a RuntimeException instead of an Exception.


   118.     catch (Exception e)
                   <--------->
*** Caution: This try block cannot throw a "checked exception" (JLS section 14.7) that can be caught here. You may have intended to catch a RuntimeException instead of an Exception.

Found 3 semantic errors compiling "javax/swing/border/TitledBorder.java":

   504.       public void paint(Graphics g)
                                         ^
*** Error: Duplicate declaration of local variable "g".


   515.       private void paint(Graphics g,
                                          ^
*** Error: Duplicate declaration of local variable "g".


   552.       public void paintExcept(Graphics g,
                                               ^
*** Error: Duplicate declaration of local variable "g".

Found 1 semantic error compiling "gnu/CORBA/GIOP/v1_0/RequestHeader.java":

    63.     requesting_principal = new byte[] { 'P' };
                                                <->
*** Error: A byte value must be an integer value (note that a character literal is not an integer value) in the range -128..127.

Found 2 semantic errors compiling "gnu/crypto/sasl/srp/SRPServer.java":

   621.          expected = srp.generateM1(
                 <------>
*** Error: Possible attempt to reassign a value to the final variable "expected".


   636.          M2 = srp.generateM2(
                 <>
*** Error: Possible attempt to reassign a value to the final variable "M2".

Found 1 semantic error compiling "gnu/crypto/sasl/crammd5/CramMD5Client.java":

   154.             digest = CramMD5Util.createHMac(password, challenge);
                    <---->
*** Error: Possible attempt to reassign a value to the final variable "digest".

Issued 1 semantic warning compiling "org/w3c/dom/bootstrap/DOMImplementationRegistry.java":

   248. 	} catch (Exception e) {
                         <--------->
*** Caution: This try block cannot throw a "checked exception" (JLS section 14.7) that can be caught here. You may have intended to catch a RuntimeException instead of an Exception.

Issued 1 semantic warning compiling "org/metastatic/jessie/provider/SessionContext.java":

    84.     catch (Exception x)
                   <--------->
*** Caution: This try block cannot throw a "checked exception" (JLS section 14.7) that can be caught here. You may have intended to catch a RuntimeException instead of an Exception.

Issued 1 semantic warning compiling "org/metastatic/jessie/provider/GNUSecurityParameters.java":

   193.         catch (Exception x)
                       <--------->
*** Caution: This try block cannot throw a "checked exception" (JLS section 14.7) that can be caught here. You may have intended to catch a RuntimeException instead of an Exception.

Issued 2 semantic warnings compiling "javax/swing/JToggleButton.java":

   107.             firePropertyChange(ACCESSIBLE_STATE_PROPERTY, null, AccessibleState.SELECTED);
                    <--------------------------------------------------------------------------->
*** Caution: Ambiguous reference to member named "firePropertyChange" inherited from type "javax/accessibility/AccessibleContext" but also declared or inherited in the enclosing type "javax/swing/JToggleButton". Explicit qualification is required.


   112.             firePropertyChange(ACCESSIBLE_STATE_PROPERTY, AccessibleState.ENABLED, null);
                    <-------------------------------------------------------------------------->
*** Caution: Ambiguous reference to member named "firePropertyChange" inherited from type "javax/accessibility/AccessibleContext" but also declared or inherited in the enclosing type "javax/swing/JToggleButton". Explicit qualification is required.

Issued 1 semantic warning compiling "javax/swing/plaf/basic/BasicInternalFrameTitlePane.java":

   471.       setBorder(null);
              <------------->
*** Caution: Ambiguous reference to member named "setBorder" inherited from type "javax/swing/JComponent" but also declared or inherited in the enclosing type "javax/swing/plaf/basic/BasicInternalFrameTitlePane". Explicit qualification is required.

Issued 1 semantic warning compiling "javax/swing/tree/DefaultTreeCellEditor.java":

    87.     public void EditorContainer()
                   <------------------>
*** Warning: The name of this method "EditorContainer" matches the name of the containing class. However, the method is not a constructor since its declarator is qualified with a type.

Issued 2 semantic warnings compiling "javax/swing/text/html/parser/DocumentParser.java":

   100.       callBack.handleSimpleTag(tag.getHTMLTag(), getAttributes(),
                                                         <------------->
*** Caution: Ambiguous reference to member named "getAttributes" inherited from type "gnu/javax/swing/text/html/parser/support/Parser" but also declared or inherited in the enclosing type "javax/swing/text/html/parser/DocumentParser". Explicit qualification is required.


   140.       return dtd;
                     <->
*** Caution: Ambiguous reference to member named "dtd" inherited from type "gnu/javax/swing/text/html/parser/support/Parser" but also declared or inherited in the enclosing type "javax/swing/text/html/parser/DocumentParser". Explicit qualification is required.

Issued 1 semantic warning compiling "javax/swing/text/html/parser/ParserDelegator.java":

   116.       return dtd;
                     <->
*** Caution: Ambiguous reference to member named "dtd" inherited from type "gnu/javax/swing/text/html/parser/support/Parser" but also declared or inherited in the enclosing type "javax/swing/text/html/parser/ParserDelegator". Explicit qualification is required.

Issued 1 semantic warning compiling "org/ietf/jgss/GSSException.java":

   254.     catch (Exception e)
                   <--------->
*** Caution: This try block cannot throw a "checked exception" (JLS section 14.7) that can be caught here. You may have intended to catch a RuntimeException instead of an Exception.
make[2]: *** [lib/stamp] Error 1
make[2]: Leaving directory `/home/kaffe/LATEST_CVS/kaffe/libraries/javalib'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/kaffe/LATEST_CVS/kaffe/libraries/javalib'
make: *** [all-recursive] Error 1
-------------- next part --------------
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking how to create a ustar tar archive... gnutar
checking whether to enable maintainer-specific portions of Makefiles... no
checking for gcc... gcc
checking for C compiler default output file name... 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 for gcc option to accept ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking CFLAGS for maximum warnings... -Wall
checking CFLAGS for gcc -mregnames... no, unknown
checking __attribute__((,,))... yes
checking __attribute__((always_inline))... yes
checking __attribute__((const))... yes
checking __attribute__((format...))... yes
checking __attribute__((noreturn))... yes
checking __attribute__((packed))... yes
checking __attribute__((unused))... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking for _LARGE_FILES value needed for large files... no
checking for a sed that does not truncate output... /bin/sed
checking for egrep... grep -E
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 dependent libraries... pass_all
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... 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 dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking how to run the C++ preprocessor... g++ -E
checking for g77... g77
checking whether we are using the GNU Fortran 77 compiler... yes
checking whether g77 accepts -g... yes
checking the maximum length of command line arguments... 32768
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc static flag  works... yes
checking if gcc supports -fno-rtti -fno-exceptions... no
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 dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking for shl_load... (cached) no
checking for shl_load in -ldld... (cached) no
checking for dlopen... (cached) no
checking for dlopen in -ldl... (cached) yes
checking whether a program can dlopen itself... (cached) yes
checking whether a statically linked program can dlopen itself... (cached) yes
appending configuration tag "F77" to libtool
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for g77 option to produce PIC... -fPIC
checking if g77 PIC flag -fPIC works... yes
checking if g77 supports -c -o file.o... yes
checking whether the g77 linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking whether NLS is requested... yes
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for LC_MESSAGES... yes
checking command to parse /usr/bin/nm -B output from g77 object... (cached) ok
checking for _ prefix in compiled symbols... no
checking execution engine... intrp
checking whether to enable run-time debugging machinery... yes
checking whether to use BCEL for additional regression tests... no
checking whether to enable JVMPI support... no
checking whether to enable profiling for C and jitted code... no
checking whether to enable debugging symbol generation for jitted code... no
checking gprof(4) profiling support... no
checking sun compatibility mode... yes
checking thread system... unix-jthreads
checking for jikes... jikes
checking whether to use jikes... yes (/home/kaffe/LATEST_CVS/jikes-install/bin/jikes)
checking for a BSD-compatible install... /usr/bin/install -c
checking whether make sets $(MAKE)... (cached) yes
checking for zip... zip
checking for mktemp... mktemp
checking for jasmin... no
checking for gawk... (cached) gawk
checking for short... yes
checking size of short... 2
checking for int... yes
checking size of int... 4
checking for long... yes
checking size of long... 4
checking for long long... yes
checking size of long long... 8
checking for __int64... no
checking size of __int64... 0
checking for void *... yes
checking size of void *... 4
checking for off_t... yes
checking for pid_t... yes
checking return type of signal handlers... void
checking whether signal handlers are one-shot... no
checking for size_t... yes
checking for ssize_t... yes
checking whether gcc needs -traditional... no
checking for _mwvalidcheckl in -lmw... no
checking for sin in -lm... yes
checking for gethostname... yes
checking for gethostbyname... yes
checking for connect... yes
checking for deflate in -lz... yes
checking for gmp.h... yes
checking if using GNU multiple precision arithmetic library... yes
checking for MD2Init... no
checking for MD4Init... no
checking for MD5Init... no
checking for MD5Init in -lmd... no
checking for ANSI C header files... (cached) yes
checking stdarg.h usability... yes
checking stdarg.h presence... yes
checking for stdarg.h... yes
checking alloca.h usability... yes
checking alloca.h presence... yes
checking for alloca.h... yes
checking bsd/libc.h usability... no
checking bsd/libc.h presence... no
checking for bsd/libc.h... no
checking for dlfcn.h... (cached) yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking features.h usability... yes
checking features.h presence... yes
checking for features.h... yes
checking for gmp.h... (cached) yes
checking iconv.h usability... yes
checking iconv.h presence... yes
checking for iconv.h... yes
checking jpeglib.h usability... yes
checking jpeglib.h presence... yes
checking for jpeglib.h... yes
checking kernel/OS.h usability... no
checking kernel/OS.h presence... no
checking for kernel/OS.h... no
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking mach-o/rld.h usability... no
checking mach-o/rld.h presence... no
checking for mach-o/rld.h... no
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking for memory.h... (cached) yes
checking mips/cachectl.h usability... no
checking mips/cachectl.h presence... no
checking for mips/cachectl.h... no
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... yes
checking netinet/in_systm.h usability... yes
checking netinet/in_systm.h presence... yes
checking for netinet/in_systm.h... yes
checking netinet/tcp.h usability... yes
checking netinet/tcp.h presence... yes
checking for netinet/tcp.h... yes
checking png.h usability... yes
checking png.h presence... yes
checking for png.h... yes
checking poll.h usability... yes
checking poll.h presence... yes
checking for poll.h... yes
checking pwd.h usability... yes
checking pwd.h presence... yes
checking for pwd.h... yes
checking sgidefs.h usability... no
checking sgidefs.h presence... no
checking for sgidefs.h... no
checking sigcontext.h usability... no
checking sigcontext.h presence... no
checking for sigcontext.h... no
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking sys/cachectl.h usability... no
checking sys/cachectl.h presence... no
checking for sys/cachectl.h... no
checking sys/filio.h usability... no
checking sys/filio.h presence... no
checking for sys/filio.h... no
checking sys/ioctl.h usability... yes
checking sys/ioctl.h presence... yes
checking for sys/ioctl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/poll.h usability... yes
checking sys/poll.h presence... yes
checking for sys/poll.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking for sys/stat.h... (cached) yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for sys/types.h... (cached) yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking sys/sysctl.h usability... yes
checking sys/sysctl.h presence... yes
checking for sys/sysctl.h... yes
checking for sys/param.h... (cached) yes
checking sys/signal.h usability... yes
checking sys/signal.h presence... yes
checking for sys/signal.h... yes
checking syslog.h usability... yes
checking syslog.h presence... yes
checking for syslog.h... yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking for unistd.h... (cached) yes
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h... yes
checking wintypes.h usability... no
checking wintypes.h presence... no
checking for wintypes.h... no
checking wtypes.h usability... no
checking wtypes.h presence... no
checking for wtypes.h... no
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking fpu_control.h usability... yes
checking fpu_control.h presence... yes
checking for fpu_control.h... yes
checking asm/sigcontext.h usability... yes
checking asm/sigcontext.h presence... yes
checking for asm/sigcontext.h... yes
checking for asm/signal.h... no
checking asm/ppc_asm.h usability... no
checking asm/ppc_asm.h presence... no
checking for asm/ppc_asm.h... no
checking asm/cachectl.h usability... no
checking asm/cachectl.h presence... no
checking for asm/cachectl.h... no
checking ia64intrin.h usability... no
checking ia64intrin.h presence... no
checking for ia64intrin.h... no
checking linux/socket.h usability... yes
checking linux/socket.h presence... yes
checking for linux/socket.h... yes
checking for linux/netlink.h... yes
checking for linux/rtnetlink.h... yes
checking netpacket/packet.h usability... yes
checking netpacket/packet.h presence... yes
checking for netpacket/packet.h... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking for getrusage... yes
checking for mprotect... yes
checking valgrind/memcheck.h usability... yes
checking valgrind/memcheck.h presence... yes
checking for valgrind/memcheck.h... yes
checking value of __GLIBC__ by analyzing object code... 2
checking value of __GLIBC_MINOR__ by analyzing object code... 3
checking which garbage collector to use... kaffe-gc
checking whether to enable GCJ support... 
checking whether to enable MIPS II instructions... 
checking whether to enable XScale support... 
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking whether byte ordering is bigendian... no
checking whether byte ordering is bigendian... (cached) no
checking whether char is unsigned... no
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for stdint types... stdint.h (shortcircuit)
make use of stdint.h in include/config-int.h (assuming C99 compatible system)
checking for struct sigcontext... no
checking for struct sigcontext_struct (without asm/sigcontext.h)... no
checking for struct sigcontext_struct (with asm/sigcontext.h)... no
checking for strftime... yes
checking for working memcmp... yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... yes
checking for working mmap... yes
checking whether utime accepts a null argument... yes
checking for select... yes
checking for socket... yes
checking for getsockname... yes
checking for getpagesize... (cached) yes
checking for memcpy... yes
checking for memmove... yes
checking for mkdir... yes
checking for rmdir... yes
checking for getcwd... yes
checking for chdir... yes
checking for getwd... yes
checking for gettimeofday... yes
checking for ftime... yes
checking for time... yes
checking for uname... yes
checking for getuid... yes
checking for localtime... yes
checking for iconv... yes
checking for iconv declaration... 
         extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for sched_get_priority_max... yes
checking for sched_get_priority_min... yes
checking for pthread_attr_setschedpolicy... yes
checking for pthread_yield... no
checking for sched_yield... yes
checking sched.h usability... yes
checking sched.h presence... yes
checking for sched.h... yes
checking for getifaddrs... yes
checking ifaddrs.h usability... yes
checking ifaddrs.h presence... yes
checking for ifaddrs.h... yes
checking for inet_ntop... yes
checking for inet_pton... yes
checking arpa/nameser.h usability... yes
checking arpa/nameser.h presence... yes
checking for arpa/nameser.h... yes
checking for memset... yes
checking for socklen_t... yes
checking for in_port_t... yes
checking for h_errno declaration in netdb.h... yes
checking for getaddrinfo... yes
checking for getnameinfo... yes
checking for struct in6_addr... yes
checking for struct sockaddr_in6... yes
checking for struct sockaddr_storage... yes
checking for in6addr_any declaration in netinet/in.h... yes
checking for in6addr_loopback declaration in netinet/in.h... yes
checking for sa_family_t... yes
checking for struct sockaddr_in6.sin6_flowinfo... yes
checking for struct sockaddr_in6.sin6_scope_id... yes
checking for remainder... yes
checking for remainderf... yes
checking for fmod... yes
checking for fmodf... yes
checking for drem... yes
checking for rint... yes
checking for floor... yes
checking for ceil... yes
checking for strtod... yes
checking for mergesort... no
checking for strdup... yes
checking for strstr... yes
checking for strtod... (cached) yes
checking for strtol... yes
checking for strtoul... yes
checking for strtouq... yes
checking for strtoull... yes
checking for isnan... yes
checking for isinf... yes
checking for finite... yes
checking whether strtod("-0.0") is broken... no
checking for strerror... yes
checking for hstrerror... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for ioctl... yes
checking for alarm... yes
checking for setitimer... yes
checking for sigprocmask... yes
checking for sigsetmask... yes
checking for sigemptyset... yes
checking for sigaddset... yes
checking for signal... yes
checking for sigaction... yes
checking for sbrk... yes
checking for valloc... yes
checking for memalign... yes
checking for mallopt... yes
checking for getrlimit... yes
checking for setrlimit... yes
checking for sigaltstack... yes
checking for madvise... yes
checking for waitpid... yes
checking for kill... yes
checking for fork... yes
checking for execve... yes
checking for execvp... yes
checking for sync... yes
checking for fsync... yes
checking for ftruncate... yes
checking for atexit... yes
checking for on_exit... yes
checking for vsnprintf... yes
checking for snprintf... yes
checking if va_list is an array... no
checking for va_copy... yes
checking for __va_copy... yes
checking for declaration of select... yes
checking for declaration of swab... no
checking for type of second parameter of scalb being int... yes
configure: WARNING: Not searching for ALSA - only available with pthreads.
checking for esd-config... /usr/bin/esd-config
checking for ESD - version >= 0.2.1... yes
checking for gmp.h... (cached) yes
Information: Using native math library
checking which extensions to include... 
checking if malloc debugging is wanted... no
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking whether binary relocation support should be enabled... yes when available
checking for linker mappings at /proc/self/maps... yes
checking whether everything is installed to the same prefix... yes
checking how to run the C preprocessor... gcc -E
checking for path separator... :
checking for directory separator... /
configure: creating ./config.status
config.status: creating Makefile
config.status: creating project.xml
config.status: creating project.properties
config.status: creating config/Makefile
config.status: creating include/Makefile
config.status: creating replace/Makefile
config.status: creating kaffe/Makefile
config.status: creating libraries/Makefile
config.status: creating kaffe/jvmpi/Makefile
config.status: creating kaffe/kaffevm/Makefile
config.status: creating kaffe/kaffevm/intrp/Makefile
config.status: creating kaffe/kaffevm/jit/Makefile
config.status: creating kaffe/kaffevm/jit3/Makefile
config.status: creating kaffe/kaffevm/gcj/Makefile
config.status: creating kaffe/kaffevm/systems/Makefile
config.status: creating kaffe/kaffevm/systems/unix-jthreads/Makefile
config.status: creating kaffe/kaffevm/systems/oskit-pthreads/Makefile
config.status: creating kaffe/kaffevm/systems/beos-native/Makefile
config.status: creating kaffe/kaffevm/systems/unix-pthreads/Makefile
config.status: creating kaffe/kaffevm/verifier/Makefile
config.status: creating kaffe/kaffevm/kaffe-gc/Makefile
config.status: creating kaffe/kaffevm/boehm-gc/Makefile
config.status: creating kaffe/kaffevm/jni/Makefile
config.status: creating kaffe/kaffe/Makefile
config.status: creating kaffe/kaffeh/Makefile
config.status: creating kaffe/xprof/Makefile
config.status: creating kaffe/man/Makefile
config.status: creating kaffe/scripts/Makefile
config.status: creating kaffe/scripts/bat/Makefile
config.status: creating kaffe/scripts/compat/Makefile
config.status: creating libraries/javalib/gnu/classpath/Configuration.java
config.status: creating libraries/javalib/Makefile
config.status: creating libraries/javalib/awt-implementations/Makefile
config.status: creating libraries/javalib/awt-implementations/kaffe/Makefile
config.status: creating libraries/javalib/gmp-math/Makefile
config.status: creating libraries/clib/Makefile
config.status: creating libraries/clib/classpath/Makefile
config.status: creating libraries/clib/fdlibm/Makefile
config.status: creating libraries/clib/native/Makefile
config.status: creating libraries/clib/io/Makefile
config.status: creating libraries/clib/libxmlj/Makefile
config.status: creating libraries/clib/nio/Makefile
config.status: creating libraries/clib/net/Makefile
config.status: creating libraries/clib/zip/Makefile
config.status: creating libraries/clib/math/Makefile
config.status: creating libraries/clib/management/Makefile
config.status: creating libraries/clib/security/Makefile
config.status: creating libraries/clib/awt/Makefile
config.status: creating libraries/clib/awt/classpath-gtk/Makefile
config.status: creating libraries/clib/awt/classpath-gtk/gtk-peer/Makefile
config.status: creating libraries/clib/awt/classpath-gtk/resource/Makefile
config.status: creating libraries/clib/awt/X/Makefile
config.status: creating libraries/clib/awt/qt/Makefile
config.status: creating libraries/clib/awt/nano-X/Makefile
config.status: creating libraries/clib/sound/Makefile
config.status: creating libraries/clib/sound/alsa/Makefile
config.status: creating libraries/clib/sound/common/Makefile
config.status: creating libraries/clib/sound/esd/Makefile
config.status: creating libraries/javalib/rebuildLib
config.status: creating libraries/extensions/Makefile
config.status: creating libraries/extensions/comm/Makefile
config.status: creating libraries/extensions/comm/javalib/Makefile
config.status: creating libraries/extensions/pjava/Makefile
config.status: creating libraries/extensions/pjava/javalib/Makefile
config.status: creating libraries/extensions/servlet/Makefile
config.status: creating libraries/extensions/servlet/javalib/Makefile
config.status: creating libraries/extensions/microsoft/Makefile
config.status: creating libraries/extensions/microsoft/javalib/Makefile
config.status: creating libraries/extensions/microsoft/clib/Makefile
config.status: creating kaffe/man/kaffe.1
config.status: creating kaffe/scripts/install-jar
config.status: creating kaffe/scripts/kaffe
config.status: creating kaffe/scripts/kaffexprof
config.status: creating kaffe/scripts/jar
config.status: creating kaffe/scripts/javah
config.status: creating kaffe/scripts/javap
config.status: creating kaffe/scripts/jdb
config.status: creating kaffe/scripts/javadoc
config.status: creating kaffe/scripts/appletviewer
config.status: creating kaffe/scripts/rmic
config.status: creating kaffe/scripts/rmiregistry
config.status: creating kaffe/scripts/serialver
config.status: creating kaffe/scripts/native2ascii
config.status: creating kaffe/scripts/compat/java
config.status: creating kaffe/scripts/compat/javac
config.status: creating kaffe/scripts/compat/appletviewer
config.status: creating kaffe/scripts/compat/javadoc
config.status: creating po/Makefile.in
config.status: creating tools/Makefile
config.status: creating tools/gjdoc/javalib/version.properties
config.status: creating tools/gjdoc/Makefile
config.status: creating tools/gjdoc/javalib/Makefile
config.status: creating test/Makefile
config.status: creating test/internal/Makefile
config.status: creating test/regression/Makefile
config.status: creating test/regression/TestScript
config.status: creating test/regression/compile_time/Makefile
config.status: creating test/regression/compile_time/CompileScript
config.status: creating test/regression/compiler/Makefile
config.status: creating test/regression/compiler/CompileScript
config.status: creating test/regression/run_time/Makefile
config.status: creating test/regression/run_time/CompileScript
config.status: creating test/jni/Makefile
config.status: creating config/config.h
config.status: config/config.h is unchanged
config.status: executing depfiles commands
config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
config.status: executing include/config-int.h commands
config.status: creating include/config-int.h : _KAFFE_INCLUDE_CONFIG_INT_H
config.status: include/config-int.h is unchanged
configure: configuring in libltdl
configure: running /bin/sh './configure' --prefix=/home/kaffe/LATEST_CVS/install  '--prefix=/home/kaffe/LATEST_CVS/install' '--exec-prefix=/home/kaffe/LATEST_CVS/install' '--enable-debug' '--with-engine=intrp' '--with-threads=unix-jthreads' '--with-jikes=/home/kaffe/LATEST_CVS/jikes-install/bin/jikes' '--without-classpath-gtk-awt' --enable-ltdl-convenience --cache-file=/dev/null --srcdir=.
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output file name... 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 for gcc option to accept ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... none
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for egrep... grep -E
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 dependent libraries... pass_all
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... 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 dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... none
checking how to run the C++ preprocessor... g++ -E
checking for g77... g77
checking whether we are using the GNU Fortran 77 compiler... yes
checking whether g77 accepts -g... yes
checking the maximum length of command line arguments... 32768
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc static flag  works... yes
checking if gcc supports -fno-rtti -fno-exceptions... no
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 dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
appending configuration tag "F77" to libtool
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for g77 option to produce PIC... -fPIC
checking if g77 PIC flag -fPIC works... yes
checking if g77 supports -c -o file.o... yes
checking whether the g77 linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking which extension is used for loadable modules... .so
checking which variable specifies run-time library path... LD_LIBRARY_PATH
checking for the default library search path... /lib /usr/lib /usr/lib/qt-3.3/lib /usr/X11R6/lib /usr/X11R6/lib /usr/lib/mysql /usr/lib/evolution/2.0 /usr/local/lib 
checking for objdir... .libs
checking whether libtool supports -dlopen/-dlpreopen... yes
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen in -ldl... yes
checking for dlerror... yes
checking for _ prefix in compiled symbols... no
checking whether deplibs are loaded by dlopen... yes
checking argz.h usability... yes
checking argz.h presence... yes
checking for argz.h... yes
checking for error_t... yes
checking for argz_append... yes
checking for argz_create_sep... yes
checking for argz_insert... yes
checking for argz_next... yes
checking for argz_stringify... yes
checking assert.h usability... yes
checking assert.h presence... yes
checking for assert.h... yes
checking ctype.h usability... yes
checking ctype.h presence... yes
checking for ctype.h... yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking for memory.h... (cached) yes
checking for stdlib.h... (cached) yes
checking stdio.h usability... yes
checking stdio.h presence... yes
checking for stdio.h... yes
checking for unistd.h... (cached) yes
checking dl.h usability... no
checking dl.h presence... no
checking for dl.h... no
checking sys/dl.h usability... no
checking sys/dl.h presence... no
checking for sys/dl.h... no
checking dld.h usability... no
checking dld.h presence... no
checking for dld.h... no
checking mach-o/dyld.h usability... no
checking mach-o/dyld.h presence... no
checking for mach-o/dyld.h... no
checking for string.h... (cached) yes
checking for strchr... yes
checking for strrchr... yes
checking for memcpy... yes
checking for memmove... yes
checking for strcmp... yes
checking for closedir... yes
checking for opendir... yes
checking for readdir... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands


More information about the kaffe mailing list