Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Source build vs Binary build?

Eclipse has a visual properties file tool for graphically composing you ant build.properties files. It makes reference to so-called "binary builds" as well as "source builds". The term source build makes sense: you're compiling sources.

"Binary builds" is throwing me off - is that referring to library (JAR) linking??

like image 233
IAmYourFaja Avatar asked Aug 18 '11 18:08

IAmYourFaja


1 Answers

  • Binary build : The compiled sources and files which will be packaged in the plug-in.
  • Source build : Selected sources and files which will be packaged without compilation.

also see Feature Manifest Editor

like image 165
Quintus.Zhou Avatar answered Oct 02 '22 20:10

Quintus.Zhou