Difference between Groovy Binary and Source release

executablegroovyinstallation

I have been seeing the words binary and source release in many websites download sections.

What do they actually mean?

For example, I have seen this in Groovy download page.

My question is how they differ? Both tend to install Groovy, but what's the main difference?

Best Answer

A source release will be compiled on your own machine while a binary release must match your operating system.

source releases are more common on linux systems because linux systems can dramatically vary in cpu, installed library versions, kernelversions and nearly every linux system has a compiler installed.

binary releases are common on ms-windows systems. most windows machines do not have a compiler installed.

Related Topic