Slashdot Mirror


User: atgreen

atgreen's activity in the archive.

Stories
0
Comments
5
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 5

  1. Good GCC (Was:Evil GCC) on GCC 3.3.1 Released · · Score: 3, Informative

    Why are you spreading misinformation? The GCJ runtime library does not use the LGPL. It uses the GPL, with an exception that permits linking against proprietary code. This is very friendly licensing IMO, and the FSF bashing is not warrented.

  2. Re:GCJ performance is a myth. Benchmarks inside. on Fast Native Eclipse with GTK+ Looks · · Score: 1

    Those are great benchmarks to tune for in order to fool people. Here's a real world application, the Eclipse java compiler (called ecj here)...

    This is a typical native ecj build (of rhino, in this example). I used the
    -repeat option to try to factor out any "fast start" advantage of the native
    executable.

    $ time find ./ -name \*.java | xargs ecj -bootclasspath /home/green/tools/FSF/HEAD/i/share/java/libgcj-3.4 .jar -repeat 5 -log out.log
    Repetition 1/5
    Repetition 2/5
    Repetition 3/5
    Repetition 4/5
    Repetition 5/5

    real 0m7.136s
    user 0m6.660s
    sys 0m0.400s

    Here's the same compiler being run with IBM's jre...

    $ time find ./ -name \*.java | xargs java org.eclipse.jdt.internal.compiler.batch.Main -bootclasspath /home/green/tools/FSF/HEAD/i/share/java/libgcj-3.4 .jar -repeat 5 -log out.log
    Repetition 1/5
    Repetition 2/5
    Repetition 3/5
    Repetition 4/5
    Repetition 5/5

    real 0m20.863s
    user 0m19.880s
    sys 0m0.710s

  3. Re:GCJ performance is a myth. Benchmarks inside. on Fast Native Eclipse with GTK+ Looks · · Score: 1

    gcj is no silver bullet, but there are definitely classes of useful programs that run almost three times faster with gcj than with the latest IBM JRE. The Eclipse java compiler is a good example of one (and this is after factoring out the fast start-up). Look here for a version you can check out and build with gcj.

  4. Fast. Was:Startup sure, but how fast does it run? on Fast Native Eclipse with GTK+ Looks · · Score: 3, Informative

    Eclipse contains a java compiler which you can also compile as a standalone app with with gcj (see http://sources.redhat.com/rhug). The gcj-compiled compiler is almost three times faster than the latest IBM JRE run version.

  5. Not true for all Java implementations... on LGPL is Viral for Java · · Score: 1

    ...since gcj can build traditional shared libraries out of jar files. See http://gcc.gnu.org/java & http://sources.redhat.com/rhug