Building Icedtea 1.5 on Gentoo

Martin Pirker Martin.Pirker at iaik.tugraz.at
Fri Jan 11 02:25:17 PST 2008


Martin Pirker wrote:
> However make stops with...
> [...]
> mkdir -p lib/tools
> /usr/bin/ecj-3.4 -nowarn  -g -d lib/tools -bootclasspath '' -source 1.6 \
>           -sourcepath
> 'rt:tools:openjdk/jdk/src/share/classes:openjdk/jdk/src/solaris/classes:openjdk/langtools/src/share/classes:openjdk/jaxp/src/share/classes:openjdk/corba/src/share/classes:openjdk/jaxws/src/share/classes:generated'
> \
>           @tools-source-files.txt
> Unrecognized option : 1.6
> make: *** [stamps/tools-class-files.stamp] Error 255


The problem appears to be
 -bootclasspath ''
the following argument is not parsed properly.


Setting -bootclasspath to " " produces the same error.

Removing -bootclasspath gives:
1. ERROR in tools/sun/jvmstat/perfdata/monitor/PerfStringMonitor.java (at line 103)
        return new String(b, 0, i, defaultCharset);
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The constructor String(byte[], int, int, Charset) is undefined


Setting -bootclasspath ':' finishes compile, but with warnings:
  incorrect classpath: :
  Annotation processing got disabled, since it requires a 1.6 compliant JVM


Fixing the other appearances of bootclasspath im Makefile, make continues
till compile of OpenJDK(?):

[...]
../../../../src/share/classes/org/omg/CORBA_2_3/portable/ObjectImpl.java
# Running javac:
/usr/bin/ecj-3.4 -nowarn -bootclasspath /home/xxx/icedtea/bootstrap/jdk1.7.0/jre/lib/rt-closed.jar:/home/xxx/icedtea/openjdk-ecj/build/linux-i586//corba/classes
-sourcepath /home/xxx/icedtea/generated:../../../../src/share/classes -d /home/xxx/icedtea/openjdk-ecj/build/linux-i586/corba/classes
@/home/xxx/icedtea/openjdk-ecj/build/linux-i586/corba/tmp/org/org.omg.CORBA/.classes.list
----------
1. ERROR in ../../../../src/share/classes/org/omg/CORBA/Any.java (at line 612)
        @Deprecated
        ^^^^^^^^^^^
Syntax error, annotations are only available if source level is 5.0
[....]
make[5]: Leaving directory `/home/xxx/icedtea/openjdk-ecj/corba/make/org/omg/CORBA'
make[4]: *** [build] Error 1
make[4]: Leaving directory `/home/xxx/icedtea/openjdk-ecj/corba/make/org/omg'
make[3]: *** [build] Error 1
make[3]: Leaving directory `/home/xxx/icedtea/openjdk-ecj/corba/make/org'
make[2]: *** [build] Error 1
make[2]: Leaving directory `/home/xxx/icedtea/openjdk-ecj/corba/make'
make[1]: *** [corba-build] Error 2
make[1]: Leaving directory `/home/xxx/icedtea/openjdk-ecj'
make: *** [stamps/icedtea-ecj.stamp] Error 2



As ECJ-3.4 help gives default as
    -1.4             + use 1.4 compliance (-source 1.3 -target 1.2)
and call has no option to raise this, this error seems clear.


Now..
1) Is my ECJ good enough?
2) Where to set option to get a higher level (5? 6?) passed properly?


Thanks for any hints,
Martin

-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 7839 bytes
Desc: S/MIME Cryptographic Signature
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20080111/37303c4d/smime.p7s 


More information about the distro-pkg-dev mailing list