Study: build times for D programs

Ali Çehreli acehreli at yahoo.com
Thu Jul 26 10:54:07 PDT 2012


On 07/26/2012 02:28 AM, Jacob Carlborg wrote:
 > On 2012-07-25 23:56, Jonathan M Davis wrote:

 > Incremental builds don't have to mean "pass a single file to the
 > compiler". You can start by passing all the files at once to the
 > compiler and then later you just pass all the files that have changed,
 > at once.

GNU make has the special $? prerequisite that may help with the above: 
"The names of all the prerequisites that are newer than the target, with 
spaces between them. "

   http://www.gnu.org/software/make/manual/make.html#index-g_t_0024_003f-944

Ali



More information about the Digitalmars-d mailing list