The newsgroup is:
ibm.software.java.linux
Mo DeJong
Red Hat Inc
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
com/developerworks/opensource/jikes/project/subscribe.html
Mo DeJong
Red Hat Inc
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
. I have a java project
that takes 60 seconds to compile with
javac and only 3 seconds to compile with Jikes.
See this URL for more info:
http://oss.software.ibm.com/developerworks/opensource/jikes/project/
Mo DeJong
Red Hat Inc
---
); }
T8851mti2(int i) { this(); }
}
Jikes correctly prints an error in this
case, since the function would loop forever.
Javac does not.
cheers
Mo DeJong
Red Hat Inc
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsu
ikes and javac fail around 100 tests.
The really nice benefit of using jikes is that if
you run into a bug in the compiler, you can actually
fix it yourself. I have fixed a number of bugs in
Jikes, it is not hard at all. This appleals to me,
since I fix bugs for a living.
ch
om/java/
http://www.kaffe.org/
P.S.
Don't forget about the Jikes Java compiler at
http://www.jikes.org.
Mo DeJong
Red Hat Inc
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
cool stuff. If anyone is interested in
how this all works, I suggest that they get involved with the
Jikes project, the jikes-dev mailing list info can be found at:
http://www10.software.ibm.com/developerworks/opensource/jikes/project/subscribe.html
Mo DeJong
Red Hat Inc
project is a part of the
Jikes project, but it also supports other java compilers
(like Sun's javac, GCJ, and the compiler shipped with Kaffe).
This CVS info is:
setenv CVSROOT :pserver:[EMAIL PROTECTED]:/cvs/jikes
cvs login
paswsd anoncvs
cvs checkout jikes jacks
(You only need to check
e current Sun
implementation of javac does nothing in this case.
What do you think?
Mo DeJong
Red Hat Inc
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
there.
Does your company just want to dump the code and
never look at it again or do they plan on improving
it and folding changes from the community back into
the source? Also, what does your application
do? That will effect who will want it.
Mo DeJong
Red Hat Inc
-
On Tue, 4 Jul 2000, Diego Pons wrote:
> Mo DeJong wrote:
>
> > I am using a "standard hashtable". I need to map a UID string to a
> > single Object, without a UID provided by the identityHashCode(),
> > I am going to have a hard time doing that.
> >
>
a "standard hashtable". I need to map a UID string to a
single Object, without a UID provided by the identityHashCode(),
I am going to have a hard time doing that.
Mo DeJong
Red Hat Inc
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
On Tue, 4 Jul 2000, Miles Sabin wrote:
> Mo DeJong wrote,
> > There seems to be a really serious bug in the
> > System.identityHashCode() method in all > JDK 1.2 releases
> > derived from Sun code. The problem only shows up in "high
> > load" situation
HashCode() does not guarantee unique values
for different objects, then what is the point of having the
System.identityHashCode() API to begin with?
Mo DeJong
Red Hat Inc
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
On Mon, 3 Jul 2000, Christopher Smith wrote:
> --On Monday, July 03, 2000 4:24 PM -0700 Mo DeJong <[EMAIL PROTECTED]>
> wrote:
> > Exception in thread "main" tcl.lang.TclRuntimeError:
> >
> > (find) table entry "SomeObject.1512497281"
fe (it does not
have the bug). The final option would be to write my
own UID() method that would try to do something to
detect a duplicate id and generate a unique one.
Each of the above options is sub-optimal.
Comments anyone?
Mo DeJong
Red Hat Inc
---
On Fri, 16 Jun 2000, Baik, John wrote:
> Is there JAVA for ARM LINUX ?
> I have a custom designed StronARM board(SA1100) with LINUX.
I seem to remember someone had the Kaffe JVM running running
on an ARM board. Grab the most recent CVS source, the
homepage is www.kaffe.org.
Mo DeJong
R
per();
this.b = false;
return
}
So the autogenerated code is a little bit different.
It does not seem like this will matter much in real
code. It is only a couple of bytes. I am sure a JIT
would remove any runtime cost.
Mo Dejong
Red Hat
ty" source you may or may
> not be prevented from doing that.
>
> /Urban
If someone has agreed to the "Sun Community Source License", then
they will not be able to contribute to the Kaffe project (or other
Open Source Java projects). Not a very nice thing for Sun to do
to
JavaOne. Where can I find more info about JavaGrande? Do you
need a place to hold it? Red Hat has a new San Francisco office ...
Mo DeJong
Red Hat Inc
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Your best bet is to take a look at the Gnu Java project. They
provide a Native C++ interface called CNI that would really
help you out.
http://sourceware.cygnus.com/java/
http://sourceware.cygnus.com/java/papers/cni/t1.html
Mo Dejong
Red Hat Inc.
On Sat, 13 May 2000, Matthias Pfisterer wrote
Under Linux, you need to set the LD_LIBRARY_PATH to include the
directory where libhello.so lives.
Mo Dejong
Red Hat Inc.
On Tue, 2 May 2000, Boris wrote:
> I have meet the question about java programming on linux platform.
> I will load 'hello.so' file in hello.class in fol
this a known problem? Has it been fixed in a newer release?
Also, the JDK 1.2 release from blackdown does not seem to come
with a -ljava_g shared lib. Any thoughts on that?
thanks
Mo Dejong
Red Hat Inc.
--
To UNSUBSCRIBE, email to
Kaffe would be your best bet. See http://www.kaffe.org/ for
more info.
Mo Dejong
Red Hat Inc.
On Wed, 22 Mar 2000, Xiangzhou Wang wrote:
> Hi
>
> I try to embed Linux in a device and I also want to run java (including
> GUI). How many libraries do I need for running java. Is th
Do you mean Jacl? It is a Tcl port written in Java. The homepage is at
http://www.scriptics.com/java
With Jacl, you can allocate Java objects and call methods on them like
this.
set str [java::new String "I am a Java string"]
set hc [$str hashCode]
It is very cool stuff.
Mo Dejong
R
in file libpthread.so.0
with link time reference
I am running on a RedHat 6.0 system which should have glib 2.1 installed.
% ls -la /lib/libc-2.1.1.so
3940 -rwxr-xr-x 1 root wheel 4016683 Apr 16 1999 /lib/libc-2.1.1.so
Mo Dejong
Cygnus Solutions
26 matches
Mail list logo