------- Additional Comments From rmathew at gcc dot gnu dot org 2005-02-11 05:28 ------- (In reply to comment #2) > Sorry for the dumb question. Where do I get the binaries for version 4. I > assume > that you meant gcc 4.0 right ? Any pointer are appreciated.
See: http://gcc.gnu.org/cvs.html for how to get the latest sources from the GCC CVS repository. On a modern Linux system, it's rather easy to compile GCC from sources. Just be sure to use a build folder separate from the source folder. For example, I use the following configuration command: $GCC_SRC_DIR/configure --prefix=$HOME/gcc --enable-languages=c,c++,java \ --disable-nls --disable-checking --disable-libmudflap \ --disable-debug --enable-threads=posix --enable-__cxa_atexit and then "make bootstrap" followed by "make install" from within the build folder. (You'll have to tweak the command line above to suit your setup.) Once you've built and installed this, you should see "How to BC compile with GCJ" in the GCC Wiki: http://gcc.gnu.org/wiki/How%20to%20BC%20compile%20with%20GCJ Hope this helps, Ranjit. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19882