Reduced C ++ Builder build time when .PAS blocks are involved.

I have a C ++ Builder project that also includes several Delphi Pascal files. I noticed that changing the implementation section of PAS files leads to the reassembly of a large number of files than required.

It seems that a new .hpp file is created whenever the .pas file changes, although the interface does not change. In turn, this requires that many .cpp files need to be recompiled.

Is there a workaround or trick that can avoid this?

+3
source share
1 answer

( , , 2009/2010), , . ( ) , .hpp pch, .pas. ( .cpp , , .hpp) , , .hpp , , .

+5

All Articles