Skip to main content

GCC Looks To Turn Off Java, Replace With Go Or ADA

GCC developers from multiple companies are beginning to reach agreement that it's time for Java to be turned off by default in GCC. The Java compiler support in GCC is in the form of GCJ, but it doesn't see much active development these days with more of the Java work happening in OpenJDK. Developers are looking to disable Java from the default GCC build process but to potentially replace it with the Go or ADA languages. 

With the open-source Java toolchain development having shifted from GCJ to OpenJDK years ago, Jeff Law of Red Hat characters the current state of Java in GCC as "moved from active development into a deep maintenance mode." GCJ seldom sees new development work and its usage isn't great either, but as of right now it's still built by default when compiling GCC. 

Jeff Law volleyed a mailing list thread on Friday entitled Replace Java with Go in default languages. So far GCC developers from various companies seem to be in agreement on dropping Java from the list of languages built by default in GCC. This proposal isn't about removing GCJ entirely from the GCC code-base but of the list of languages to build by default. 

One of the only real benefits to developers right now with having Java by default is that building the Java compiler front-end stresses some GCC code in ways not experienced by the other language front-ends. But as a con, about 25% of the GCC bootstrap time is spent handling Java. If removing GCJ, the boostrap time is dramatically shorter. 

Jeff Law has proposed Java by default be replaced by Google's Go language, since it's able to effectively stress some of the less-tested areas of code too but the Go development community is much more vibrant than Java. The Go bootstrapping and regression testing would still ensure good code quality coverage but be of more use to developers and end-users. GCC developers seem to be in agreement with this change too for adding Go, but one of the ADA developers has proposed the ADA front-end be now built by default since it also does a good job stressing the compiler. 

We'll see what decisions end up coming, but it looks like Java is on its way out in GCC.

Comments

Popular posts from this blog

Feedly launches 'Feedly Cloud' sync platform, new web interface

Feedly, one of the leading Google Reader replacement services, announced major restructuring of its services today with a new cloud infrastructure and web interface. Posted on its official blog, Feedly unveiled what it calls "Feedly Cloud", a scalable infrastructure it says is ready to replace Google Reader. The new Feedly Cloud provides several benefits, the first of which is one-click import from Google Reader -- new users to the service can now simply pull everything over seamlessly from their Google account and start using Feedly right away. Existing users will simply have to make sure that they have the latest version of Feedly installed, and their accounts will be migrated to Feedly Cloud over the next few days. Additionally, the new service allowed Feedly to create a stand-alone web interface (found simply at cloud.feedly.com) that works in all major browsers without plugins or extensions. The transition to Feedly Cloud has another benefit, and that is the abilit...

Romanian profanity (înjurătură)

This includes simple verbs and verb phrases. a da la untura lu binica : to have sexual intercourse; very used by the romanian community in Meudon a (şi-)o pune : to have sexual intercourse (literally "to put it," "it" being the penis) Jucăm o Biliboacă : to have oral sex (literally "Let's play Biliboaca" - it suggests that you take the balls in your mouth and shake your head while sucking the balls) a (i-)o da la chechereş : to have sexual intercourse (literally "to give it," "it" being the penis) a suge inima : to have oral sex(literally "to suck the heart,") a şi-o trage : to have sexual intercourse (literally "to pull it," with "it," as above, being the penis) a da în geantă : to have sexual intercourse (literally "to hit the purse") a băga mielu' la căldură : to have sexual intercourse (literally "to take the lamb somewhere warm") a băga lemnul in sobă : to have sex...

How to create a local Repository for Linux!

You should have a FTP server or HTTP server to make yum actually working. However since we haven't really gone through setting up FTP or HTTP server, please read-on and understand the process. If you have got vsftpd installed, use that. Otherwise, don't forget to actually set it up yourself later. Here we will create a local repository for Fedora and CentOS in the easy way. 0. You should have the yum as well as the createrepo package installed first. 1. Create the directory to hold the repository. mkdir -p /var/ftp/pub/yum-repo/centos/ mkdir -p /var/ftp/pub/yum-repo/fedora/ 2. createrepo /var/ftp/pub/yum-repo/centos/ ; createrepo /var/ftp/pub/yum-repo/fedora/ will create the local yum repository by creating a folder named "repodata with four xml files named, filelists.xml.gz, other.xml.gz, primary.xml.gz and repomd.xml ............ http://humanlinux.blogspot.com/2009/04/how-to-create-local-repository-for.html