bcb的project菜单里面的build和make的区别

bcb的project菜单里面的build和make的区别
make 只是编译你这一次更改过的文件,然后连接。  相当于vc里面的build
build 是对所有文件全部重新编译链接。  相当于vc里面的rebuild
 

  只要不是第一次,build的速度比make慢很多。  
  第一次,make=build


MAKE   is   not   inherently   tied   to   compiling   and   linking,   but   is   a   more   generic   tool   for   executing   commands   based   on   file   dependencies.  
   
  Choose   Build   from   the   Project   Manager   Project   context   menu   to   rebuild   all   the   components   of   your   project   regardless   of   whether   they   have   changed.  

你可能感兴趣的:(bcb的project菜单里面的build和make的区别)