0
votes

Does anyone know how to setup the make option to stop recompiling everything every time? Thanks in advance.

1
Is this for C++Builder or Delphi? And XE5 is not a Borland product, it is an Embarcadero product. Borland sold off its development tools several years ago, it is not involved in them anymore.Remy Lebeau
Sure: you just have to fix your makefile so that it doesn't rebuild everything every time. Simple!MadScientist
@RemyLebeau yes it is Embacadero's productsuser2984297
@MadScientist it turns out something similar to what you suggest. In XE5 everytime you have a make command, the compiler will look at the file called builtins.mak. It turns out my XE5 doesn't have the file and I copy the file from the old borland builder6 and solve the problem.user2984297

1 Answers

0
votes

If it is rebuilding everything, then chances are that either something deep down in the project really is changing every time, or maybe you have library .pas files on your project's search path that are preventing the compiler from using compiled .dcu files correctly. Typically the compiler only recompiles a unit if it detects a change in that unit or its dependancies.