Page 1 of 1

Build vs Rebuild

Posted: Wed May 18, 2016 10:18 pm
by ColleenKobe
When it comes to a project, what is the difference between "Build" and "Rebuild"?

Thanks!

Colleen

Re: Build vs Rebuild

Posted: Thu May 19, 2016 10:00 am
by eranif
Build - only compiles the modified files and then performs a link
Rebuild - cleans all object files (i.e. all files will get to compile) and then performs a link

Eran

Re: Build vs Rebuild

Posted: Thu May 19, 2016 3:22 pm
by ColleenKobe
eranif wrote:Build - only compiles the modified files and then performs a link
Rebuild - cleans all object files (i.e. all files will get to compile) and then performs a link

Eran
Perfect! Thank you, Eran. :-)

Colleen