From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2377 invoked by alias); 20 Dec 2007 10:15:45 -0000 Received: (qmail 2367 invoked by uid 22791); 20 Dec 2007 10:15:44 -0000 X-Spam-Check-By: sourceware.org Received: from mx1.cadenas.de (HELO cnsbw01.cadenas.de) (213.179.137.23) by sourceware.org (qpsmtpd/0.31) with SMTP; Thu, 20 Dec 2007 10:15:34 +0000 Message-ID: <476A422F.6090508@cadenas.de> Date: Thu, 20 Dec 2007 10:15:00 -0000 From: Thomas Mittelstaedt User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: gcc-help@gcc.gnu.org Subject: Re: Problem building gcc 4.2.2 on SunOS 5.9, resolved References: <4768E8E4.2020302@cadenas.de> In-Reply-To: <4768E8E4.2020302@cadenas.de> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org X-SW-Source: 2007-12/txt/msg00358.txt.bz2 First, I created a build directory separate from the source tree, but I also had to tell gcc explicitly to use the installed gnu ld via --with-ld=/opt/gcc-4.1/bin/ld. Otherwise, the system linker would be used. ../gcc-4.2.2/configure --prefix=/opt/gcc-4.2.2 --enable-version-specific-runtime-libs --enable-static --enable-shared --disable-nls --with-gnu-as --with-as=/opt/gcc-4.1/bin/as --with-gnu-ld --with-ld=/opt/gcc-4.1/bin/ld --with-build-time-tools=/opt/gcc-4.1/bin/ --enable-languages=c,c++,objc,obj-c++ Thomas Mittelstaedt schrieb: > Hallo, > > I build with the following: > > ../configure --prefix=/opt/gcc-4.2.2 > --enable-version-specific-runtime-libs --enable-static --enable-shared > --disable-nls --with-gnu-ld --with-build-time-tools=/opt/gcc-4.1/bin/ > --enable-languages=c,c++,java,objc,obj-c++ > > make CFLAGS='-O' LIBCFLAGS='-g -O2' LIBCXXFLAGS='-g -O2 > -fno-implicit-templates' bootstrap > > > > make[6]: Entering directory > `/localbuild/gcc-4.2.2/.obj/sparc-sun-solaris2.9/sparcv9/libjava/classpath/tools' > mkdir -p classes/gnu/classpath/tools/giop/grmic/templates > mkdir -p classes/gnu/classpath/tools/rmi/rmic/templates > mkdir -p classes/gnu/classpath/tools/appletviewer > mkdir -p classes/gnu/classpath/tools/jarsigner > mkdir -p classes/gnu/classpath/tools/keytool > cp > ../../../../../../libjava/classpath/tools/gnu/classpath/tools/rmi/rmic/templates/*.jav > classes/gnu/classpath/tools/rmi/rmic/templates > cp > ../../../../../../libjava/classpath/tools/gnu/classpath/tools/giop/grmic/templates/*.jav > classes/gnu/classpath/tools/giop/grmic/templates > cp > ../../../../../../libjava/classpath/tools/gnu/classpath/tools/rmi/*.txt > classes/gnu/classpath/tools/rmi/ > cp > ../../../../../../libjava/classpath/tools/gnu/classpath/tools/giop/*.txt > classes/gnu/classpath/tools/giop/ > /localbuild/gcc-4.2.2/.obj/./gcc/gcj -B/localbuild/gcc-4.2.2/.obj/./gcc/ > -B/opt/gcc-4.2.2/sparc-sun-solaris2.9/bin/ > -B/opt/gcc-4.2.2/sparc-sun-solaris2.9/lib/ -isystem > /opt/gcc-4.2.2/sparc-sun-solaris2.9/include -isystem > /opt/gcc-4.2.2/sparc-sun-solaris2.9/sys-include -m64 -encoding UTF-8 > --bootclasspath '../lib':'../lib/glibj.zip' --classpath . -C -d classes > ../../../../../../libjava/classpath/tools/gnu/classpath/tools/*.java > ../../../../../../libjava/classpath/tools/gnu/classpath/tools/*/*.java > ../../../../../../libjava/classpath/tools/gnu/classpath/tools/*/*/*.java > ../../../../../../libjava/classpath/tools/gnu/classpath/tools/AbstractMethodGenerator.java:0: > error: Can't find default package 'java.lang'. Check the CLASSPATH > environment variable and the access to the archives > ../../../../../../libjava/classpath/tools/gnu/classpath/tools/HelpPrinter.java:43: > error: Class or interface 'java.io.InputStreamReader' not found in import. > > > I bootstrapped from version 4.1. > > SunOS buildsun3 5.9 Generic_117171-07 sun4u sparc SUNW,Sun-Blade-1000 >