icedtea6 cannot compile itself
the mad doctor kaeding
the.mad.doctor.kaeding at gmail.com
Fri Sep 2 09:57:34 PDT 2011
Seriously? Not enough information?
I'm following the instructions on
http://www.linuxfromscratch.org/blfs/view/svn/general/icedtea6.html
It instructs me to download icedtea6-1.9.7 binary and use it to
compile icedtea6-1.9.7 from source. I tried using the exact downloads
that that page links to, and get errors that some methods have the
same erasure as others, and the compilation fails (see my original
message). I tried using newer downloads, with the same types of
errors, but a different number of them.
If I don't know what files to download to get a successful compilation,
would you please send me a list of the correct ones? Thank you.
---------------
from linuxfromscratch:
Source Package Information
*
IcedTea6 Source
http://icedtea.classpath.org/download/source/icedtea6-1.9.7.tar.gz
54a327a9591dab15049b81ec3c0af724
6.3 MB
*
OpenJDK Source
http://download.java.net/openjdk/jdk6/promoted/b20/openjdk-6-src-b20-21_jun_2010.tar.gz
0b36adbf67e4f261e1b827ed4be4f447
43 MB
*
JAF Source
http://icedtea.classpath.org/builds/icedtea6/src/drops/jdk6-jaf-b20.zip
bc95c133620bd68c161cac9891592901
70 KB
*
JAXP Source
http://icedtea.classpath.org/builds/icedtea6/src/drops/jdk6-jaxp-b20.zip
22e95fbdb9fb7d8b6b6fc0a1d76d1fbd
5.8 MB
*
JAXWS Source
http://icedtea.classpath.org/builds/icedtea6/src/drops/jdk6-jaxws-b20.zip
91adfd41e6f001add4f92ae31216b1e3
5.3 MB
*
Estimated disk space required: 6.6 GB
*
Estimated build time: 23 SBU (an additional 83 SBU for testsuite)
Binary Package Information
*
Binary download (x86):
http://anduin.linuxfromscratch.org/files/BLFS/icedtea6-1.9.7-1-x86-bin.tar.xz
*
Download MD5 sum: 616f3841562b2787ce101a85378029d1
*
Download size (binary): 100 MB
*
Estimated disk space required: 846 MB
*
Binary download (x86_64):
http://anduin.linuxfromscratch.org/files/BLFS/icedtea6-1.9.7-1-x86_64-bin.tar.xz
*
Download MD5 sum: 98cf8a009c63cb2b32a94dd23b828fca
*
Download size (binary): 77 MB
*
Estimated disk space required: 564 MB
Additional Downloads
Required Patches
*
http://www.linuxfromscratch.org/patches/blfs/svn/icedtea6-1.9.7-upstream_fixes-1.patch
*
http://www.linuxfromscratch.org/patches/blfs/svn/icedtea6-1.9.7-generate_cacerts-1.patch
*
http://www.linuxfromscratch.org/patches/blfs/svn/icedtea6-1.9.7-xerces2_10-1.patch
*
http://www.linuxfromscratch.org/patches/blfs/svn/icedtea6-1.9.7-fixed_paths-1.patch
Required Jar Files
*
Eclipse Java Complier
http://ftp.osuosl.org/pub/eclipse/eclipse/downloads/drops/R-3.6.1-201009090800/ecj-3.6.1.jar
448c6e65234fc61624e14b0964d75bd9
1.6 MB
*
Rhino Java Script
ftp://ftp.mozilla.org/pub/mozilla.org/js/rhino1_7R2.zip
40d0a9abec8169e42920214b37fa8e0e
2.9 MB
*
Xalan
http://apache.osuosl.org/xml/xalan-j/xalan-j_2_7_1-bin.zip
99d049717c9d37a930450e630d8a6531
16.8 MB
*
Xerces
http://apache.osuosl.org/xerces/j/Xerces-J-bin.2.11.0.zip
408500aaaf1ff9f1e03e79defe90facc
7.0 MB
IcedTea6 Dependencies
Required Dependencies
XZ-Utils
Optional Runtime Dependencies (required for source installation)
ALSA Library-1.0.21, CUPS-1.4.5, GTK+-2.20.1, Xorg Libraries, and
Xulrunner-1.9.2.13
Additional Requirements (for source build, including optional requirements)
Apache Ant-1.8.1, UnZip-6.0, which-2.20, and Zip-3.0
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/icedtea6
Installation of IcedTea6
The instructions below install both the binary and source versions.
You may stop after installing the binary version or continue on
installing the source version. You can choose to keep either or both.
IcedTea6 Binary Installation
Begin by extracting the appropriate binary tarball and changing to the
extracted dirctory. Install the binary IcedTea6 with the following
commands as the root user:
cp -R j2sdk-image /opt/icedtea6-1.9.7-bin &&
chown -R root:root /opt/icedtea6-1.9.7-bin
Configure the temporary IcedTea6 installation with the following commands:
export PATH_HOLD="${PATH}" &&
export JAVA_HOME="/opt/icedtea6-1.9.7-bin" &&
export CLASSPATH=".:/usr/share/java" &&
export PATH="${PATH}:${JAVA_HOME}/bin"
The binary version is now installed. If you don't want to compile the
sources, skip ahead to the configuration section.
IcedTea6 Source Installation
[Note]
Note
The source build of IcedTea6 requires Apache Ant-1.8.1. You'll need to
build that first to satisfy the reciprocal dependency, and return to
this section to continue building IcedTea6.
Like other packages in BLFS, begin by extracting the IcedTea6 source
package and changing into the extracted dirctory.
IcedTea6 requires several freely available jar files for the bootstrap
compiler. You may leave these items in place after the build is
complete, as they will be needed by other programs, or remove them if
you choose. You can optionally choose not to install them at all, and
provide the necessary configure options to find the files. Install the
necessary tools with the following commands as the root user:
mkdir jarfiles &&
cd jarfiles &&
unzip ../../rhino1_7R2.zip &&
unzip ../../xalan-j_2_7_1-bin.zip &&
unzip ../../Xerces-J-bin.2.11.0.zip &&
install -v -d -m755 /usr/share/java &&
install -v -m755 rhino1_7R2/*.jar /usr/share/java &&
install -v -m755 xalan-j_2_7_1/*.jar /usr/share/java &&
install -v -m755 xerces-2_11_0/*.jar /usr/share/java &&
install -v -m755 ../../ecj-3.6.1.jar /usr/share/java &&
ln -s ecj-3.6.1.jar /usr/share/java/ecj.jar &&
ln -s xalan.jar /usr/share/java/xalan2.jar &&
cd .. &&
rm -r jarfiles
IcedTea6 is composed of several individual components of the
proprietary JDK that have been relicensed under an open source
license. Put all of the individual components into the source tree
with the following commands:
mkdir drops &&
cp -v ../jdk6-jaf-b20.zip drops/ &&
cp -v ../jdk6-jaxp-b20.zip drops/ &&
cp -v ../jdk6-jaxws-b20.zip drops/ &&
cp -v ../openjdk-6-src-b20-21_jun_2010.tar.gz .
Apply a patch to allow building with an installed IcedTea6 as the bootstrap JDK:
patch -Np1 -i ../icedtea6-1.9.7-upstream_fixes-1.patch
Apply a patch to generate a valid cacerts file using the system CA certificates:
patch -Np1 -i ../icedtea6-1.9.7-generate_cacerts-1.patch
Apply a patch to fix the build when using a newer version of Xerces2:
patch -Np1 -i ../icedtea6-1.9.7-xerces2_10-1.patch
Apply a patch to replace fixed paths with ones appropriate for BLFS:
patch -Np1 -i ../icedtea6-1.9.7-fixed_paths-1.patch
Configure and build the package with the following commands:
unset JAVA_HOME &&
./autogen.sh &&
./configure --with-jdk-home=/opt/icedtea6-1.9.7-bin \
--enable-cacerts \
--disable-plugin \
--disable-webstart &&
make
To test the results, issue: make check. The included version of jtreg
is old, and the test suite is also very dependent on the host system.
You should expect to see 6 or 7 failures and 1 error in the langtools
tests, and 20 to 23 failures in jdk with up to 3 errors. The other
4700+ tests should pass. The reason for the variable results is due to
different architechtures, versions of dependent libraries, and even
the CA certificates used to generate the cacerts file.
Install the package with the following commands as the root user:
cp -R openjdk.build/j2sdk-image /opt/icedtea6-1.9.7 &&
chown -R root:root /opt/icedtea6-1.9.7
On 8/30/11, Dr Andrew John Hughes <ahughes at redhat.com> wrote:
> On 14:04 Tue 30 Aug , the mad doctor kaeding wrote:
>> I am trying to compile icedtea6 with itself, but get errors.
>> I tried 1.9.7, and 1.10.x, with same results, but different
>> numbers of errors.
>>
>> What am I doing wrong?
>>
>> Thank you
>>
>> Thomas
>>
>> ----------
>>
>
> I don't know because you don't give enough information here. We
> at least need config.log and what is being used in bootstrap/jdk1.6.0.
>
> At a guess, it looks like you're using a bootstrap JDK that has newer
> classes than the one being built.
>
> The second stage of the build builds the JDK again with itself, so that
> is regularly tested.
> --
> Andrew :)
>
> Free Java Software Engineer
> Red Hat, Inc. (http://www.redhat.com)
>
> Support Free Java!
> Contribute to GNU Classpath and IcedTea
> http://www.gnu.org/software/classpath
> http://icedtea.classpath.org
> PGP Key: F5862A37 (https://keys.indymedia.org/)
> Fingerprint = EA30 D855 D50F 90CD F54D 0698 0713 C3ED F586 2A37
>
More information about the distro-pkg-dev
mailing list