When it comes to a project, what is the difference between "Build" and "Rebuild"?
Thanks!
Colleen
Build vs Rebuild
- ColleenKobe
- CodeLite Expert
- Posts: 130
- Joined: Wed Mar 30, 2016 4:31 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Build vs Rebuild
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
Rebuild - cleans all object files (i.e. all files will get to compile) and then performs a link
Eran
Make sure you have read the HOW TO POST thread
- ColleenKobe
- CodeLite Expert
- Posts: 130
- Joined: Wed Mar 30, 2016 4:31 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Build vs Rebuild
Perfect! Thank you, Eran.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
Colleen